Trying to see if this is possible. I have a loop:
For Each c In Range("Test")
....
next c
Test is a named range with 1 column, let's say it is numbers 1 through 10.
What I need to do is when a certain condition inside the loop is met, I need to go back to previous c and repeat the loop( ex. if c is currently 5, and the condition is met, I need it to become 4 and do the for loop again). Is there anyway to do that?
Your help on this is greatly appreciated.