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 会说 (1,1),C2 会读取 (3, 2) 等等。这在某种程度上是一种自我引用。
要自引用单元格,请使用
=CONCATENATE("(",COLUMN(), ", ",ROW(),")")
=CONCATENATE("(",COLUMN(A1), ", ",ROW(A1),")")
编辑:删除了不必要的函数调用。
=CONCATENATE("(";COLUMN(A1);",";ROW(A1);")")
=>(1,1)