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.
我在使用 ahk 在 excel 中选择一些可变单元格范围时遇到了一些问题
我试过了:
NR = 10
X0.Range("A"NR:"B"NR).select
但这不起作用
谁能告诉我正确的解决方案?
嗯..乍一看,您似乎没有正确链接变量和字符串。您必须使用.(空格点空格)以您正在使用的模式连接字符串和变量。
.
我不确定 COM 是如何与 Excel 一起工作的,但是这个呢:
XO.Range("A" . NR . ":B" . NR). select
或这个:
thisrange = A%NR%:B%NR% XO.Range(thisrange).select