Lookup over multiple sheets

kelly1

Well-known Member
Joined
May 11, 2003
Messages
525
I want to be able to enter a reference no. In ‘Sheet 1’ A1

Then search for that number in column D in Sheets 2,3,4 etc. and display the result of column E of the same row.

Is this possible and could someone help please?

Thanks for any help
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
If you have the morefunc.xll add-in installed...

1. Insert two new sheets, name them First and Last.
2. Place all the relevant sheets between First and Last.
3. Invoke on Sheet1...

=INDEX(THREED(First:Last!$E$2:$E$400),MATCH(A1,THREED(First:Last!$D$2:$D$400),0))
 
Upvote 0
This is for people at work, at a Government office

I need to do it without add ins

Can this still be done?

Kelly
 
Upvote 0
Yes, it can be done without the addin.

(From one of Domenic's solutions)

Try:
=VLOOKUP(A1,INDIRECT("'"&INDEX(TabNames,MATCH(TRUE,COUNTIF(INDIRECT("'"&TabNames&"'!D2:D100"),A1)>0,0))&"'!D2:E100"),2,0)

Note:
TabNames is a named range including the names of each of the sheets to lookup. You must list the sheet names somewhere on the sheet and name the range, TabNames.
D2:D100 is the Lookup Range
D2:E100is the Lookup Table to pull info from
A1 is the lookup value

Adjust ranges to suit as necessary

The formula Must be confirmed with CTRL+SHIFT+ENTER, not just Enter
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,607
Members
449,090
Latest member
vivek chauhan

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