Exit Statement
Exits a loop construct or function.
Syntax
Exit { Do | For | Function }
Description
The Exit statement syntax has these forms:
- Exit Do
- Provides a way to exit a Do...Loop statement. It can be used only inside a Do...Loop statement. Exit Do transfers control to the statement following the Loop statement. When used within nested Do...Loop statements, Exit Do transfers control to the loop that is one nested level above the loop where Exit Do occurs.
- Exit For
- Provides a way to exit a For loop. It can be used only in a For...Next loop. Exit For transfers control to the statement following the Next statement. When used within nested For loops, Exit For transfers control to the loop that is one nested level above the loop where Exit For occurs.
- Exit Function
- Immediately exits the Function procedure in which it appears. Execution continues with the statement following the statement that called the Function.
See Also
Do...Loop, For...Next, Function...Fend
Exit Statement Example
For i = 1 To 10
If Sw(1) = On Then
Exit For
EndIf
Jump P(i)
Next i