Hiding vlookup message #N/A

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've copied a vlookup down a column and do not want to see the message "#N/A"
I'm using MSO2000
 
Thanks for the reponse. would I highlight the column and do the =if(insa ?
and the lookup formula would be exactly as it is in the first cell?
 
Go to the first formula in your column, modify it with the ISNA argument, and
copy down. Hit F9 to recalculate if your workbook is not set to automatic
calculation.

Dave
 
Doing something wrong. Here's what I have.
=If(isna(VLOOKUP(C3,'User Listing'!A:D,3,FALSE),"",VLOOKUP(C3,'User
Listing'!A:D,3,FALSE)
 
You're missing some closing parentheses, around the ISNA() function and the
IF() function:
=If(isna(VLOOKUP(C3,'User Listing'!A:D,3,FALSE)),"",VLOOKUP(C3,'User
Listing'!A:D,3,FALSE))

Dave
 

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