While...Wend
- Last UpdatedJul 18, 2023
- 1 minute read
The While...Wend loop conditional statement is similar to the Do While loop statement. The condition is checked before executing the block of statements comprising the loop.
Example
While <condition>
<statement/s>
Wend