Syntax:
Part | Description |
<loop> | Required. This is type of loop you're in that you want to jump to the next iteration. Valid <loop> values are For, While, Do, and Loop. Both Do and Loop are identical. |
Notes: Be careful when using Continue in both Do...Loop and While...Wend loops as you can easily create an infinite loop.
Example: