Function TypicalForNextExample()
'This performs the same as the while loop but uses for next
Dim i As Integer
For i = 1 To 9
MsgBox (i)
Next i
End Function
Technical ramblings | Mark Brooks
Function TypicalForNextExample()
'This performs the same as the while loop but uses for next
Dim i As Integer
For i = 1 To 9
MsgBox (i)
Next i
End Function