VLOOKUP and return blank if no match

Xirom431

Board Regular
Joined
Dec 2, 2010
Messages
102
Hi,

I have this formula =VLOOKUP(F3,'Device List'!E2:F814,2,FALSE), it will return #NA. How do I have it returns blank if no match found? Thanks.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try

=IF(ISNA(VLOOKUP(F3,'Device List'!E2:F814,2,FALSE)),"",VLOOKUP(F3,'Device List'!E2:F814,2,FALSE))
 
Upvote 0
In excel 2007 +

=IFERROR(VLOOKUP(F3,'Device List'!E2:F814,2,FALSE), "")

Previous versions

=IF(ISNA(VLOOKUP(F3,'Device List'!E2:F814,2,FALSE)), "", VLOOKUP(F3,'Device List'!E2:F814,2,FALSE))
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,662
Members
449,462
Latest member
Chislobog

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