문제

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