慕桂英4014372
行号和行标签(应该就是你说的标号)其实是一样的。都是需要事先定义的。Sub a()If Date Mod 2 = 0 ThenGoTo 30 '跳到行号为30的代码行ElseGoTo LineInput1 '跳到行标签为 LineInput1 的代码行End If10: MsgBox "10"20: MsgBox "20"30: MsgBox "30"40: MsgBox "40"50: MsgBox "50"60: MsgBox "60"GoTo LastLine '跳到行标签为 LastLine 的代码行LineInput1:InputBox "aaa"LastLine:End Sub