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.
 
If C3 contains Kanoodle and G3 (formatted as Text) contains 012605, this formula:

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

returns

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

which is exactly the same as the normal formula:

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

Maybe it's the space before summary that's causing your problem. If the normal formula works, so should this:

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

but, of courese, the workbook must be open because you haven't included a path.
 
Upvote 0

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

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