In my wb1/sheet1, I got this cells:
A21 = Full name of wb I'm trying to get data from ("Test1.xlsx")
B9 = Name of sheet in wb Test1.xlsx ("Eget materiell")
B10 = Name of cell reference wb Test1.xlsx ("B2")
If I put in this formula in a cell in wb1/sheet1:
everyting works.
But if I try to do this:
i get a #REF ! error.
How can I the "indirect" formula to work?
All workbooks are in the same folder.
A21 = Full name of wb I'm trying to get data from ("Test1.xlsx")
B9 = Name of sheet in wb Test1.xlsx ("Eget materiell")
B10 = Name of cell reference wb Test1.xlsx ("B2")
If I put in this formula in a cell in wb1/sheet1:
Code:
='[Test1.xlsx]Eget materiell'!$B$2
But if I try to do this:
Code:
=INDIRECT("'["&A21&"]"&B$9&"'!"&B$10)
How can I the "indirect" formula to work?
All workbooks are in the same folder.