In LibreOffice Calc I want to reference a sheet and a cell depending on the values in other cells. For example with
=INDIRECT(C$3 & ".D24")
I can reference the sheet, depending on the value of C3
and there the cell D24
. That works quite well, but the cell is hardwritten here. I would like do have a reference cell for D
and maybe for 24
as well. But the 24 could also be dynamically changed like calc usually does when the $ lock sign isn't used.
I tried:
=INDIRECT(C$3 & CONCATENATE(C1; ROW()))
which is not working unfortunately... C1
value is D
in this example