Do While
Top  Previous  Next


The Do...While action is a conditional loop. Just like the While action, this action will evaluate a condition and execute a statement or set of statements if the condition equates to true. Unlike the While action, the Do..While action will execute the statement(s) at least once before it evaluates the condition.

Actions_doWhile

Test condition at end of loop
This option is selected by default when you choose the Do..While action. If this option is not selected, this action becomes a While loop and will test the condition at the beginning of the loop rather than at the end.