Excel VBA : structures de contrôle – boucles

For… Next


For <Compteur> = <Début> To <Fin> [Step <Pas>]
   Instructions
Next [<Compteur>]

For Each… Next


For Each <Variable> = <Début> In <Collection>
   Instructions
Next [<Variable>]

While… Wend


While <Condition>
   Instructions
Wend

Do… Loop


Do
   Instructions
Loop Until|While [<Condition>]

Exit, GoTo


Exit
GoTo

Les commentaires sont fermés