Variable VLOOKUP

Assamita

Board Regular
Joined
Sep 23, 2011
Messages
131
I don't know if it's possible, but I would like to do a "Variable" VLOOKUP. Let me put it in an example.

Imagine I have a workbook with sheets named "A", "B" and "C", and then a fourth sheet with a dropdown selectable, with values A, B and C.
In that fourth sheet there's also a VLOOKUP function and I'd like it to look at different tabs depending on the dropdown selection.

If the dropdown was in cell B1, it would be something like:
Code:
=VLOOKUP(A:A;[B]' & $B$1 & '[/B]!A:B;2;0)

Would that be possible somehow?

Thank you
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
You need to use the INDIRECT function when building ranges dynamically, i.e.
Code:
=VLOOKUP(A1;INDIRECT(B1 & "!A:B");2;0)
 
Upvote 0

Forum statistics

Threads
1,215,161
Messages
6,123,363
Members
449,097
Latest member
thnirmitha

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