Hello:
I have a Calc spreadsheet with one sheet for each month of the year, as in “Jan”, “Feb”, … “Dec”.
Also, on each sheet, I have a named range which refers to a specific cell. The named range refers to a single cell in each sheet that contains a particular value. So, let’s say that there is a named range called “groceriesT”. This is a total of transactions related to groceries. Each month may have a different number of rows and columns, but each month has a named range called “groceriesT” scoped for a particular sheet.
On another sheet in the same document, I want to reference the value of “groceriesT” in a given month.
I can easily type, =Jan.groceriesT, but I want to have both “Jan” and “groceriesT” come from another cell. This sheet is a Yearly summary and to make things more reliable, I want to compute the cell reference from a column value (e.g., the column will have a month name) and row value (the row will have “groceriesT”).
I tried to use string concatenation to form the reference string (e.g., “Jan” & “.” & “groceriesT”), but this does not resolve to a cell reference. I tried INDIRECT, but this does not accept a named range, only a formula.
Is there any way to retrieve a cell value from two strings (one a sheet name, one a range name)?