Using LibreOffice Calc, Version: 6.4.4.2
I am having trouble using a text cell's content as a sheet reference. I have used previous solutions using INDIRECT but something is still not right.
The manual insertion of the sheet name in cell B6 works:
=$'Jul-10-2020'.E3
That successfully returns the contents of cell E3 in the sheet named "Jul-10-2020".
But I need to automate it a bit and use a cell that already has the sheet name in it. For example, cell A6 contains:
"Jul-10-2020"
A6 is formatted as text, not date.
I think INDIRECT is the right function to use, but I am missing something:
=$'(Indirect("A6"))'.E3
This returns the error "#REF!"
When I do a simple test of INDIRECT, it works:
=Indirect("A6")
Returns "Jul-10-2020" which is the text contents of A6.
What am I missing?
Monty