VLOOKUP returns #N/A but want a blank instead

  • Thread starter Thread starter Golf Club
  • Start date Start date
G

Golf Club

I want to have a blank field return instead of #N/A when
my VLOOKUP is false. How would I change my current
formula to do that? Here is the formula currently used:
=VLOOKUP(A10,DC$7:DH$801,4,1)*D10

Any help would be appreciated.
 
Hi
try
=IF(ISNA(VLOOKUP(A10,DC$7:DH$801,4,1)),"",VLOOKUP(A10,DC$7:DH$801,4,1)*
D10)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top