Forum Discussion
M4rk-B
Feb 27, 2021Copper Contributor
Can I include the text in another cell to identify a data source ?
Hello all, Bit of a left field request. I have a database with several sheets and want the user to be able to compare data in two of them. To get the cell A1 data from the second sheet, I'd nor...
SergeiBaklan
Feb 27, 2021Diamond Contributor
That could be
=INDIRECT("'" & B1 & "'!A1")
or
=INDIRECT("'" & B1 & "'!" & ADDRESS(ROW(A1),COLUMN(A1)))
to make it more dynamic.
- M4rk-BMar 01, 2021Copper ContributorThanks Sergei, that was spot on.
- SergeiBaklanMar 01, 2021Diamond Contributor
M4rk-B , you are welcome