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.
我需要获取单元格 A1 中活动单元格的地址
我可以用宏来做
Sub Worksheet_selectionchange(target as range) Cells(1,1)=activecell.address End sub
此解决方案的问题是用户丢失了撤消...
有任何想法吗?
你可以使用公式
=CELL("address")
通过省略第二个参数,它将为您提供活动单元的地址。地址只会在计算时更改,而不仅仅是在您移动选择时更改。我还记得听说当活动工作表不是带有公式的工作表时它是不可靠的。如果你不能忍受这些限制,我认为你不走运。