While ... Loop

Action: Runs a set of statements as long as an expression is true.
 
Syntax: WHILE "expression"
    ...statements ...
LOOP
 
Remarks: WHILE loops can be nested as many times as memory allows.
 
See Also: Do Until, For Each, For Next