Repeats a block of statements while a condition is True or until a condition becomes True.

Do [{While | Until} condition]
   [statements]
   [ExitDo]
   [statements]
Loop               ' or use this syntax
Do
   [statements]
   [ExitDo]
   [statements]
Loop [{While | Until} condition]

Expand imageArguments

Expand imageRemarks

Expand imageRequirements

Expand imageSee Also