Question about referenced cells/formulas

alexj

New Member
Joined
Nov 15, 2005
Messages
5
Can someone explain to me how I can turn "Kanoodle" and "012605" into referenced cells (from a different workbook, obviously) in this formula?
='[AllTime-KanoodleROI-012605.xls] Summary'!$E$7
I figured something like this would do the trick, but I'm not too familiar with Excel:
='[AllTime-', 'Kanoodle', 'ROI-', '012605', '.xls] Summary'!$E$7
Apparently, it's harder to break text out of a formula than it is in PHP :x.

Thank you in advance.
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You would need to use INDIRECT like this:

=INDIRECT("'[AllTime-"&"Kanoodle"&"ROI"&"012605"&".xls]Summary'!$E$7")

You can replace "Kanoodle" and "012605" with cell references.


The source workbook must be open.
 
Upvote 0
Thanks, Andrew.

However, this document needs to be viewable by anyone in my dept. at any given time. Do you know if there's a way to pull those references from closed workbooks?

Thanks again,

Alex
 
Upvote 0
^ Thanks, I'll try that out. Meanwhile, can someone explain why this keeps returning the dreaded "#REF!" error?

=INDIRECT("'[AllTime-"&"C3"&"ROI-"&"F3"&".xls]Summary'!$E$7")
 
Upvote 0
I have the morefunc thing installed...yet it seems as though Excel isn't recognizing it. I tried pulling the data from a closed workbook and I'm getting a "#VALUE!" error.

=INDIRECT.EXT("'[AllTime-"&C$3&"ROI-"&G3&".xls] Summary'!$E$7")
 
Upvote 0
In a spare cell enter:

="'[AllTime-"&C$3&"ROI-"&G3&".xls] Summary'!$E$7"

In another cell enter the formula as it should appear without the = sign. Do they look the same?
 
Upvote 0
No, the first one looks like this:

"'[AllTime-"&C$3&"ROI-"&G3&".xls] Summary'!$E$7"

...and the second one looks like this:

'[AllTime-KanoodleROI-012605.xls] Summary'!$E$7

Thanks,

Alex
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,700
Members
448,979
Latest member
DET4492

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