Continue
Mon 01 January 2018Syntax
Continue
Description
Use the Continue statement to continue execution in a loop. How the statement performs depends on the type of loop:
- 
   
In For loops, this statement continues to do the next step of the iteration
 - 
   
In While loops, this statement continues to the top of the loop and the test of the condition
 - 
   
In Repeat-Until loops, this statement continues to the Until check at the bottom of the loop.
 
Parameters
None.