Programming Reference Manual
 
Syntax
 
GoTo label
 
Description
Go to the label and continue execution from there. Only labels in the current user defined procedure are accessible.
See Also
 
Example
 
Sub Main
    X = 2
Loop:
    X = X*X
    If X < 100 Then GoTo Loop
    Debug.Print X ' 256
End Sub