Forum Discussion
Dip_Bou
Jun 12, 2024Copper Contributor
convert cell value into name either to call a tab or a named array
To fill up a table, I need to gather values from multiple tabs; for each row a different tab. I added the exact names of the tabs in the first column. Then I tried =A10!B14 to get the value in the ...
- Jun 12, 2024
I just removed the quotes to read directly the cell value as a reference. It worked 🙂
=INDEX(INDIRECT(A35);MATCH($J$33;Inputs;0);MATCH(B$33;Quarter;0))
Unless I am mistaken, I guess we're done on this. Thanks folks!
SergeiBaklan
Jun 12, 2024MVP
In addition, if you drag above formula down it will return the value from B14 since it's fixed in the text. The workaround could be
=INDIRECT("'"&$A$10&"'!"&ADDRESS(ROW(B14), COLUMN(B14)))