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

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Try

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

Or

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

Forum statistics

Threads
1,216,116
Messages
6,128,931
Members
449,480
Latest member
yesitisasport

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