Continue
Continue
Continue is an advanced programming construct designed to be used with While and For steps.
Placing a Continue step in the middle of a 'While - End While' or 'For - End For' will cause the loop to immediately resume execution at the top of the loop evaluating the loops condition.
The continue step does not affect the value of any variables. If used in a For loop the Continue will cause the For loop to move to the next element in the passed list.