Is there a function in LibreOffice Calc that accepts an integer x and an integer y and spits out the contents of the cell with that position?

There is a function ADDRESS that spits out the address of a given [x;y]. The problem is that I do not know how to dereference it.

有帮助吗?

解决方案

The following is working for me:

=INDIRECT(ADDRESS(5;2))

Where 5 is the row and 2 is the column, INDIRECT seems to resolve that reference to the actual value.

Also tested NeoOffice on OSX where this works too.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top