How not to show #N/A when using vlookup formula

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

Guest

I have a vlookup formula =vlookup(V3,SHEET1!,$G$3:$J$14520,4,0) which I have
inputed. Many of the responses come back with #N/A. I would like to remove
this. Using IF(V3="","", does not work, becasue there is data there. What
do I need to add to my formula?
 
You have to add an if statement

=if(iserror(vlookup(V3,SHEET1!,$G$3:$J$14520,4,0)),"No
Data",vlookup(V3,SHEET1!,$G$3:$J$14520,4,0))

Hope it helps
 

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