G Guest May 19, 2005 #1 I need Vlookup to return a blank if the appropriate cell is empty. Thank you so much . . . .Y'all have been extremely helpful!! J.
I need Vlookup to return a blank if the appropriate cell is empty. Thank you so much . . . .Y'all have been extremely helpful!! J.
G Guest May 19, 2005 #2 This will work - =if(vlookup(,,,)=[whatever the cause of the blank is],"",vlookup(,,,))
C Chip Pearson May 19, 2005 #3 Try something like =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Try something like =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
D Dave Peterson May 20, 2005 #4 Instead of returning a 0? =if(vlookup()="","",vlookup()) And to get rid of the #n/a's: =if(iserror(vlookup()),"missing",if(vlookup()="","",vlookup()))
Instead of returning a 0? =if(vlookup()="","",vlookup()) And to get rid of the #n/a's: =if(iserror(vlookup()),"missing",if(vlookup()="","",vlookup()))
P PC May 20, 2005 #5 IF("lookupcell"="","", VLOOKUP("lookupcell","lookuprange","returnvaluecolumn","false??"))