VLookup with multiple tabs

UBMonte

New Member
Joined
Jan 25, 2011
Messages
1
I have a workbook with multiple brands (tab a,b,c,...). I want to create a summary sheet that will be dynamic based on the brand chosen from drop down box (brand a,b,c...) the vlookup will go to that specific brand and execute the vlookup. Any suggestions?

Thanks in advance
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
=VLOOKUP(C4,INDIRECT(D3&"!A:B"),2,FALSE)

The value you're looking up is going to be C4, Cell D3 will be the result of the tab. So for my example I made a tab called Fish and a tab called Cars. Cars and Fish were part of a drop down cell, and whatever cell that was told the function to look on that tab. Good luck.
 
Upvote 0
I have a workbook with multiple brands (tab a,b,c,...). I want to create a summary sheet that will be dynamic based on the brand chosen from drop down box (brand a,b,c...) the vlookup will go to that specific brand and execute the vlookup. Any suggestions?

Thanks in advance
Assuming that each lookup table is setup exactly the same...

A1 = some brand (sheet name)
B1 = lookup value

=VLOOKUP(B1,INDIRECT("'"&A1&"'!A:B"),2,0)
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,853
Members
452,948
Latest member
UsmanAli786

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