Do while loop : Do While « Language Basics « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Language Basics
- Do While
Do while loop
Sub cmdDoWhileLoop()
Dim intValue As Integer
intValue = 10
Do While Nz(intValue) < 35
intValue = intValue + 1
Loop
End Sub
Related examples in the same category