Indirect Formula Help -- I think

NicholasP

Active Member
Joined
Nov 18, 2006
Messages
291
I think this is an easy indirect formula solution, but I'm not so good at using Indirect...

So I have this formula:

=INDEX('2011'!B3:H1000,MATCH(D4,'2011'!A3:A1000,0),MATCH(J3,'2011'!B2:H2,0))

And in the place of 2011, I would like to reference cell C4...

Any help would be greatly appreciated.

Thanks
Nick
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Try this:
=INDEX(INDIRECT("'" & C4 & "'!$B3:H1000"),MATCH(D4,"'" & C4 & "'!A3:A1000",0),MATCH(J3,"'" & C4 & "'!$B2:H2",0))
 
Upvote 0
I think this is an easy indirect formula solution, but I'm not so good at using Indirect...

So I have this formula:

=INDEX('2011'!B3:H1000,MATCH(D4,'2011'!A3:A1000,0),MATCH(J3,'2011'!B2:H2,0))

And in the place of 2011, I would like to reference cell C4...

Any help would be greatly appreciated.

Thanks
Nick

To spare at least one INDIRECT call...

=VLOOKUP(D4,INDIRECT("'"&C4&"'!A2:H1000"),MATCH(J3,INDIRECT("'"&C4&"'!A2:H2"),0),0)
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,334
Members
452,907
Latest member
Roland Deschain

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