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
When I tried Continue For it Failed, I got a compiler error. While doing this, I discovered 'Resume':
Continue For
For Each I As Item In Items If I = x Then 'Move to next item Resume Next End If 'Do something Next
Note: I am using VBA here.