Using index match & indirect together

deduwa

Board Regular
Joined
Jul 28, 2015
Messages
110
Hi,

I have a table in the master sheet like below where the ?? denotes where I want to add a formula.
I also have multiple other reference worksheets, named in the format Jul_15, Aug_15 etc etc.
From each reference worksheet, I want to pull into the master sheet the same data from column Z.
In all the reference worksheet, the names all appear in column A and the data I want to pull in is always in column Z. Can this be done using index match indirect? (Do not want to use a macro for this)

Thanks

Jul_15Aug_15Sep_25Oct_15

Adam
??
Barry
Cat
Del
Elon
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
How about
=index(indirect("'"&B$1&"'!$Z$1:$Z$100),match(a2,indirect("'"&B$1&"'!$A$1:$A$100"),0))
 
Upvote 0
Thanks Fluff,

I get a 'error with this formula' pop up and it highlights the below area....

1594475911027.png
 
Upvote 0
Oops, missed a closing " in the first indirect

=index(indirect("'"&B$1&"'!$Z$1:$Z$100"),match(a2,indirect("'"&B$1&"'!$A$1:$A$100"),0))
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

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