how to clear #NA error in VLOOKUP

kimjoybarclay

New Member
Joined
Aug 16, 2017
Messages
2
=IF(B7="","",VLOOKUP(B7,ProductLookup,3,FALSE)) this is the formula I am using. I am using it on an order form that will be repeatedly cleared and re-filled in for students during registration. However, when the textbook is cleared from the "Products" column, this error report shows up in the Course and Price Columns. How do I report a blank in those cells when the Textbook (Product) is removed?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try

=IF(B7="","",IFNA(VLOOKUP(B7,ProductLookup,3,FALSE), ""))

Or

=IF(B7="","",IFERROR(VLOOKUP(B7,ProductLookup,3,FALSE), ""))
 
Upvote 0

Forum statistics

Threads
1,223,237
Messages
6,170,924
Members
452,366
Latest member
TePunaBloke

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