Hi Mtdew,
Sounds like you have a similar request to my recent post titled "How do I create variables for linked data?".
While I do not yet have my solution for my recent post, perhaps you might benefit from the following: I currently use an Excel macro to pull the file name and file location from a specific cell, within a specific worksheet. The code looks like this:
=======================================================
lcFolder = Sheets("Admin").Range("B8").Value
lcFileNameDataGL = Sheets("Admin").Range("B9").Value
ChDir lcFolder
Workbooks.Open Filename:= _
lcFolder & "\" & lcFileNameDataGL
=======================================================
assume "B8" (above) contains the value of "C:\users\public\documents"
assume "B9" (above) contains the value of "test.xls"
Then do whatever you need to do using the data stored in the file called "C:\users\public\documents\test.xls".
Hope this helps.
Dave