I need Vlookup to return a blank

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

Guest

I need Vlookup to return a blank if the appropriate cell is empty.

Thank you so much . . . .Y'all have been extremely helpful!!

J.
 
This will work -

=if(vlookup(,,,)=[whatever the cause of the blank is],"",vlookup(,,,))
 
Try something like

=IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...))


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Instead of returning a 0?

=if(vlookup()="","",vlookup())

And to get rid of the #n/a's:

=if(iserror(vlookup()),"missing",if(vlookup()="","",vlookup()))
 
IF("lookupcell"="","",
VLOOKUP("lookupcell","lookuprange","returnvaluecolumn","false??"))
 

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