Hello all,
I have found a number of threads on this subject, but all point towards using '=indirect()' or a macro. The problem with the indirect function is that I cannot consistently have the referenced file open, hence a #REF error. I also do not want to use a macro due to the volatility of the formulas (sometimes, somewhat randomly chosen formulas change and I do not want to the users of this program to have to update a macro on a daily basis...).
What I have tried:
Method 1
H1 = WorkbookName
="'\\Drive\Folder\Folder2\[" & $H$1 & ".xls]SheetName'!$E$18"
**But this simply returns my entire input as a string.
AND
Method 2
H1 = WorkbookName
='\\Yoc2000\shared\BESTPRICE\2013\04.13\[ & $H$1 & .xls]Best Base Price'!$E$18
**(same line, no quotes) But this gives me an "Update Values" msgbox.
My only thought is since Method 1 returns exactly what I need :
'\\Drive\Folder\Folder2\[WorkbookName.xls]SheetName'!$E$18
only without the "=" in front of the path, to somehow use that...
Any ideas?
Thanks for your time and effort,
John
I have found a number of threads on this subject, but all point towards using '=indirect()' or a macro. The problem with the indirect function is that I cannot consistently have the referenced file open, hence a #REF error. I also do not want to use a macro due to the volatility of the formulas (sometimes, somewhat randomly chosen formulas change and I do not want to the users of this program to have to update a macro on a daily basis...).
What I have tried:
Method 1
H1 = WorkbookName
="'\\Drive\Folder\Folder2\[" & $H$1 & ".xls]SheetName'!$E$18"
**But this simply returns my entire input as a string.
AND
Method 2
H1 = WorkbookName
='\\Yoc2000\shared\BESTPRICE\2013\04.13\[ & $H$1 & .xls]Best Base Price'!$E$18
**(same line, no quotes) But this gives me an "Update Values" msgbox.
My only thought is since Method 1 returns exactly what I need :
'\\Drive\Folder\Folder2\[WorkbookName.xls]SheetName'!$E$18
only without the "=" in front of the path, to somehow use that...
Any ideas?
Thanks for your time and effort,
John