It's weird that didn't occur to me.
What if I only wanted to skip a single iteration?
"For i = 1 to 5", where "4" is skipped.
Is that possible without "If i = 4 then goto label" with the "label:" at the Next statement?
For i = 1 to 5
If i <> 4 Then
'your code here
End If
Next i
For I = 1 To 10
If I<>4 Then
' Do stuff
Debug.Print I
End If
Next I