Aide fonction For..To..Next [Résolu/Fermé]
A voir également:
- Aide fonction For..To..Next
- Aide fonction For..To..Next ✓ - Forum - Programmation
- Leaving parcel center to next stop - Forum - Consommation et internet
- Comment faire une boucle à longueur variable for... to ✓ - Forum - VB / VBA
- Fonction mail to en pdf ✓ - Forum - Programmation
- In transit to next facility traduction ✓ - Forum - Consommation et internet
3 réponses
lulu
La solution que j'ai trouver c'est utiliser les nombres d'un tableau mais je trouve ca pas super
ratikuss
- Messages postés
- 2004
- Date d'inscription
- vendredi 8 juin 2007
- Statut
- Membre
- Dernière intervention
- 14 décembre 2016
Avec While j'arrive à avoir une suite de 10 chiffre non logique
Sub test() x = 1 While i <> 999 i = Int(Rnd * 11) Cells(x, 1) = i x = x + 1 If x = 10 Then i = 999 Wend End Sub