C
cgeier
I have several Excel work books saved in the save format (i.e.
FY03SCHD.XLS, FY04SCHD.XLS, ....)
Each of these have the worksheets set up in the same format (i.e.
January03, Febuary03, ....)
What I would like to do is create a VLOOKUP that would access th
correct work book/sheet based on a date.
I have been able to break the date down and get the correct file nam
already. -NO PROBLEM
What I can not do is get it to link if the work book is not currentl
open, but will if it is open.
Here is the correct path ....
=VLOOKUP($A4,'G:\SHIP\PLANNER\SCHEDULE\[FY03SCHD.XLS]February03'!$A$5:$BB$32,3)
Here is how I set up the link that work when the work book is open ...
=VLOOKUP($A3,INDIRECT("'G:\SHIP\PLANNER\SCHEDULE\[FY"&E3&"SCHD.XLS]"&F3&"'!$A$5:$BB$32"),3)
I have since found out that INDIRECT is a volatile function and that i
why it only work when the source work book is open.
Do you think you could help me out
FY03SCHD.XLS, FY04SCHD.XLS, ....)
Each of these have the worksheets set up in the same format (i.e.
January03, Febuary03, ....)
What I would like to do is create a VLOOKUP that would access th
correct work book/sheet based on a date.
I have been able to break the date down and get the correct file nam
already. -NO PROBLEM
What I can not do is get it to link if the work book is not currentl
open, but will if it is open.
Here is the correct path ....
=VLOOKUP($A4,'G:\SHIP\PLANNER\SCHEDULE\[FY03SCHD.XLS]February03'!$A$5:$BB$32,3)
Here is how I set up the link that work when the work book is open ...
=VLOOKUP($A3,INDIRECT("'G:\SHIP\PLANNER\SCHEDULE\[FY"&E3&"SCHD.XLS]"&F3&"'!$A$5:$BB$32"),3)
I have since found out that INDIRECT is a volatile function and that i
why it only work when the source work book is open.
Do you think you could help me out