Вопрос

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