在Librecalc公式中,如何能够访问当前的单元格地址?例如在excel中,它就像()
,但似乎它在librecalc中不起作用。
答案 0 :(得分:0)
函数Current()在计算公式时提供瞬时结果。
如果您正在寻找"当前的单元格地址",Cell()函数可能会帮助您。有用的选项包括:
Returns the number of the referenced column.
=CELL("COL";D2) returns 4.
Returns the number of the referenced row.
=CELL("ROW";D2) returns 2.
Returns the absolute address of the referenced cell.
=CELL("ADDRESS";D2) returns $D$2.
=CELL("ADDRESS";Sheet3.D2) returns $Sheet3.$D$2.
=CELL("ADDRESS";'X:\dr\test.sxc'#$Sheet1.D2) returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2.