Goto Instruction

Syntax
GoTo label
Group
Flow Control
Description
Go to the label and continue execution from there. Only labels in the current user defined procedure are accessible.

Sub Main
    X = 2
Loop:
    X = X*X
    If X < 100 Then GoTo Loop
    Debug.Print X ' 256
End Sub