[VBA] Boucle "do while not" et appel rec
Fermé
mavonline
-
28 déc. 2007 à 21:21
BloodyAngel Messages postés 1482 Date d'inscription mardi 21 juin 2005 Statut Contributeur Dernière intervention 21 juin 2018 - 28 déc. 2007 à 21:40
BloodyAngel Messages postés 1482 Date d'inscription mardi 21 juin 2005 Statut Contributeur Dernière intervention 21 juin 2018 - 28 déc. 2007 à 21:40
A voir également:
- [VBA] Boucle "do while not" et appel rec
- Appel inconnu - Guide
- Nommez une application d'appel vidéo ou de visioconférence - Guide
- Télé samsung s'éteint et se rallume en boucle - Forum Téléviseurs
- Signal d'appel - Forum iPhone
- Appel externe c'est quoi - Forum telephonie fixe
2 réponses
BloodyAngel
Messages postés
1482
Date d'inscription
mardi 21 juin 2005
Statut
Contributeur
Dernière intervention
21 juin 2018
403
28 déc. 2007 à 21:40
28 déc. 2007 à 21:40
Private Sub CBnCMM_Click()
Sheets("CMM").Select
Dim i As Long
i = 1
While Not Cells(i,1).Value = ""
i = i + 1
Wend
Sheets("CMM").Cells(i,1).Select
End Sub
Sheets("CMM").Select
Dim i As Long
i = 1
While Not Cells(i,1).Value = ""
i = i + 1
Wend
Sheets("CMM").Cells(i,1).Select
End Sub