====== Goto ====== The Goto command will instruct the current program to jump to a specified label. If I = 2 Then Goto LAB1 End If LAB1: I = 3 ==== About Labels… ==== A label can be set with a colon (:) to specify a point for GoTo or GoSub to begin execution. ADD_VALUE: LINKPOINT: Labels cannot use reserved keywords, numbers, or include blank spaces. The following labels are not permitted: Ladder: 'Reserved keyword 123: 'Number. About 10: 'Blank space. [[cubloc:index#system_library:|Go CUBLOC home]]