Referencing another workbook, where the name changes...INDIRECT?

markw996

New Member
Joined
Feb 22, 2009
Messages
7
Hi,

I have 52 workbooks (one for each week) and I need to reference cell G73 in the workbook from the previous week.

I have created the following formula which displays the path, filename, tab name, and cell.

The problem is that the formula displays all of this correct information in a text string format, using INDIRECT simply returns "#Ref" even though the other workbook exists in the correct location.

Do I need to use multiple INDIRECT statements? Or am I missing a much simpler way of performing the action?

FORMULA:

Code:
=INDIRECT("='" & LEFT(CELL("filename"),SEARCH("Wk",CELL("filename"))+1) & MID(CELL("filename"),SEARCH("Wk",CELL("filename"))+2, SEARCH(".xls",CELL("filename"))-SEARCH("Wk",CELL("filename"))-2)-1 & RIGHT(CELL("filename"),LEN(CELL("filename"))-SEARCH(".",CELL("filename"))+1) & "'!$G$73")

Thanks,
Mark.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Indirect.ext from the Morefunc add-in will also allow referencing a closed workbook but if the file is large then you pay a time penalty for the ability to access the file while closed.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top