GoTo <Line number> in VBA
问题 From the VBA help file: GoTo Statement Branches unconditionally to a specified line within a procedure. Syntax GoTo _ line _ The required line argument can be any line label or line number. Remarks GoTo can branch only to lines within the procedure where it appears. My question is, how can I jump to a line number using GoTo ? (I know how to jump to a label.) (Note: I'm asking this for curiosity's sake. I have no intention of actually using GoTo this way.) 回答1: I understand your dislike of the