10 sheet v-lookup

Soccerx12

New Member
Joined
May 22, 2015
Messages
15
I am trying to run a v-look up against the previous/all other sheets in a file.

The value I am searching for starts in A7 in each worksheet. The numbers I want to pull start in E7 in each worksheet. Values do repeat but I only need to pull it once.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
( No the formula below WILL NOT WORK, but may help in conceptualizing the goal)
The concept would be like...
=VLOOKUP(LookupValue,Sheet1:Sheet10!$A$7:$E$99,5,FALSE)

or a 3D range for applying a VLOOKUP or other lookup function.
 
Upvote 0
See if this works for you, I believe I have translation from your formula to the array formula correct.

Where MySheets is a list of the 10 sheets names and then named MySheets in the name box.

The red and blue fonts are for reference from your formula to the array formula.

Use Ctrl + Shift + Enter


Code:
=VLOOKUP([COLOR="#FF0000"]LookupValue[/COLOR],[COLOR="#0000FF"]Sheet1:Sheet10![/COLOR]$A$7:$E$99,5,FALSE)


Code:
=VLOOKUP([COLOR="#FF0000"]B1[/COLOR],INDIRECT("'"&INDEX([COLOR="#0000FF"]MySheets[/COLOR],MATCH(1,--(COUNTIF(INDIRECT("'"&[COLOR="#0000FF"]MySheets[/COLOR]&"'!A7:A99"),[COLOR="#FF0000"]B1[/COLOR])>0),0))&"'!A7:E99"),5,0)

Howard
 
Upvote 0

Forum statistics

Threads
1,203,115
Messages
6,053,598
Members
444,674
Latest member
DWriter9

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