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.
我想使用一行代码来引用同一个单元格,但在不同的工作表中(在同一个工作簿中)。例如:
Dim SheetRef as Worksheet SheetRef = Sheet6 SheetRef.Range("E5").Value = "Please work!"
其中 SheetRef 可以在 VB 中更改以表示不同的工作表索引号(而不是工作表名称)。
我尝试了很多组合,使变量变暗,因为许多不同的东西,谷歌搜索高低并没有取得任何进展,非常感谢任何帮助!
非常感谢,
马丁。
首先,您需要使用 set 来声明您的工作表对象等于工作表。然后,使用索引符号表(i)
dim sheetref as worksheet dim i as long i = 2 'sheet index number set sheetref = sheets(i) sheetref.range("E5").value = "WORKS!"