Contents - Index


GoTo (Macro Command)

 

GOTO 10

Transfer execution of the next macro command to the line having label 10.  Labels must be numerical values ranging between 1 and 30000 followed by a colon (:).  Labels will usually be used with the IF THEN ELSE command, e.g., IF (X<Y) then GOTO 10.  They are also used with the ONERROR GOTO XX command.

 

MacroCommands