Sep 21 2023 09:02 AM
I have one file that uses data that is contained in one of several different files. I specify which file I want to access in the first column of a row, such as DEAL#1 (to retrieve data from file DEAL#1.xlsm). Then I want to put a formula in a different cell that pulls in whatever is in say cell C3 of DEAL#1.
Sep 21 2023 09:31 AM
If you can keep the other workbooks open, you can use the INDIRECT function:
=INDIRECT("[" & $A2 & "]SheetName'!C3")
where SheetName is the name of the sheet you want to get data from. INDIRECT doesn't work with closed workbooks though.
Sep 22 2023 08:13 AM
Sep 22 2023 08:37 AM
There are several options: