0

在 Librecalc 公式中,我如何能够访问当前的单元格地址?例如,在 excel 中它就像(),但它似乎在 librecalc 中不起作用。

4

1 回答 1

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.

可以在此处找到有关 Cell() 的完整文档

于 2015-02-10T07:25:18.643 回答