Multiple v-lookups

MN_Excel

Board Regular
Joined
Nov 8, 2010
Messages
153
I'm attempting to use multiple v-lookups in one formula. If the item is not found in the first v-lookup, I would like it to search the second v-lookup for the value. If it appears in neither range I would like "none" to display. Not sure what I'm missing when I try this, but I can't get it to work.

Any ideas?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
I'm attempting to use multiple v-lookups in one formula. If the item is not found in the first v-lookup, I would like it to search the second v-lookup for the value. If it appears in neither range I would like "none" to display. Not sure what I'm missing when I try this, but I can't get it to work.

Any ideas?
Even if the formula doesn't work post it so we can see what you're trying to do with it.
 
Upvote 0
Perhaps something like this

Code:
=IFERROR(VLOOKUP(E1,A1:B6,2,0),IFERROR(VLOOKUP(E1,C1:D6,2,0),""))

Where the lookup value is in E1 and your two ranges are A1:B6 and C1:D6 - change as appropriate
 
Upvote 0
Sure, just replace the IFERROR value with another vlookup.

eg:

Code:
=IFERROR(VLOOKUP(E1,A1:B6,2,0),IFERROR(VLOOKUP(E1,C1:D6,2,0),IFERROR(VLOOKUP(E1,A7:B12,2,0),"")))
 
Upvote 0

Forum statistics

Threads
1,224,598
Messages
6,179,814
Members
452,945
Latest member
Bib195

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