Hi falcon,
I hope you asked how to skip from a loop. if so here are 2 examples.
Example 1:-
Dim
If i = 5 Then
Exit For
End If
Next
Example 2:-
Do Until i = 10
Exit Do
i += 1
Loop