Until

Applies a condition to the continuation of a Loop or For-loop.

Until (F9)

Parameters

Expression
Any valid expression.

Remarks

The expression is evaluated once after each iteration, and is evaluated even if continue was used. If the expression evaluates to false (which is an empty string or the number 0), the loop continues; otherwise, the loop is broken and execution continues at the line following Until.

For Loop

Download example

Examples of Loop commands