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

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
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,073
Messages
6,128,645
Members
449,461
Latest member
kokoanutt

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