Is there a statment like Exit For, except instead of exiting the loop it just moves to the next item.
Exit For
For example:
For
I want to be clear that the following code is not good practice. You can use GOTO Label:
For Each I As Item In Items If I = x Then 'Move to next item GOTO Label1 End If ' Do something Label1: Next