Continue
Immediately begins the next iteration of the enclosing loop.
Syntax: Continue [ Do | For | While ]
Example
This example uses Continue For to skip processing of certain characters of the string.
Dim i%, ch$, text$
For i = 1 To 10
ch = Mid$(text, i, 1)
If ch = " " Then Continue For
' Process a non-space character here
Next i