I have a for loop over an array. What I want to do is test for a certain condition in the loop and skip to the next iteration if true:
For i = LBound(Schedul
You can use a kind of continue by using a nested Do ... Loop While False:
continue
Do ... Loop While False
'This sample will output 1 and 3 only Dim i As Integer For i = 1 To 3: Do If i = 2 Then Exit Do 'Exit Do is the Continue Debug.Print i Loop While False: Next i