I enter a function in a cell such as:
=VLOOKUP($A12,’E:MFAFolder[090502.xls]mfa-090502′!$A$12:$E$29,4,FALSE)
This works fine, but I want to dynamically modify the date strings (the “090502” strings) based on a calculation to be able to access a date-determined page. Logically, I want something like:
=VLOOKUP($A12,”‘E:MFAFolder[” & TEXT($G$4,”mmddyy”) & “.xls]mfa-” & TEXT($G$4,”mmddyy”) & “‘!$A$12:$E$29”,4,FALSE)
where the calculated date is in $g$4, but during the course of evaluation the 2nd argument is left as a double-quoted string, and VLOOKUP fails with a #VALUE error. Can anyone offer a suggestion?