Multiple VLOOKUP in One Cell

meppwc

Well-known Member
Joined
May 16, 2003
Messages
604
Office Version
  1. 365
Platform
  1. Windows
I have a formula in K12 as seen below
=IFERROR(VLOOKUP(F12,Table!A:W,23,FALSE),"")

I want to modify it to look at values in both F12 and H12, so I created the following
=IFERROR(VLOOKUP(F12&H12,Table!A:W,23,FALSE),"")

Even though the formula did not error out (syntax must be correct), I am not getting the expected result.

What I am hoping to achieve is if a value exists in either F12 or H12, then look for that value in A:W of the Table
If found, display the value of column 23 which is "No"

This formula is returning nothing and should return "No"
=IFERROR(VLOOKUP(F12&H12,Table!A:W,23,FALSE),"")
So I had to of created it incorrectly
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
F12&H12 concatenates the two cells so if F12 is "Tom" and H12 is "Brown" then you are looking up "TomBrown". You could try:
Code:
=IFERROR(VLOOKUP(F12,Table!A:W,23,FALSE),IFERROR(VLOOKUP(H12,Table!A:W,23,FALSE),""))
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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