GoTo Statement/text/sbasic/shared/03090302.xhpSun Microsystems, Inc.GoTo statementGoTo StatementContinues program execution within a Sub or Function at the procedure line indicated by a label.Syntax:see ParametersParameters:Sub/Functionstatement block Label1Label2:statement blockExit SubLabel1:statement blockGoTo Label2End Sub/FunctionUse the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (":").You cannot use the GoTo statement to jump out of a Sub or Function.Example:see Parameters