If I have a loop like:
What do I do if I set a criteria to the loop where if it is true, move onto the next c like this:![]()
For Each c in Range("Arbitrary") .... Next c
I've tried a couple of combinations like:![]()
For Each c in Range("Arbitrary") If c.Value = "*" Then ??? ...Other code if not true Next C
??? = Next C - doesn't work
??? = Next For - doesn't work
I'm sure it can be done but I don't know the syntax.
Bookmarks