Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 VBA 新手,如果有人能提供帮助,我将不胜感激。
我想创建一个 Excel VBA makro,它执行以下操作:
它显示了一个框,我需要在其中输入一个起始单元格编号,例如 A5
它显示下一个框,我需要在其中输入最后一个单元格编号,例如 A17
然后 Excel 选择从 A5 到 A17 的这个范围,但它也选择了从 A5 到 A17 的行,但是 Excel 不必选择整行,只需从 A 列到 L 列。
请帮忙!
你的意思是:
Sub qwerty() Dim f As Long, l As Long f = Application.InputBox(prompt:="Enter first row number", Type:=1) l = Application.InputBox(prompt:="Enter last row number", Type:=1) Range("A" & f & ":L" & l).Select End Sub