is there a way to return a zero or blank in the place of #n/a in a vlookup result that is FALSE?
C Cathrine Dec 23, 2004 #1 is there a way to return a zero or blank in the place of #n/a in a vlookup result that is FALSE?
B Bob Phillips Dec 23, 2004 #2 =IF(ISNA(vlookup_formula),0,vlookup_formula) -- HTH RP (remove nothere from the email address if mailing direct)
=IF(ISNA(vlookup_formula),0,vlookup_formula) -- HTH RP (remove nothere from the email address if mailing direct)
A Arvi Laanemets Dec 23, 2004 #3 Hi =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) or =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...)) (instead "" you can use 0 as return value for error too)
Hi =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) or =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...)) (instead "" you can use 0 as return value for error too)
C Cathrine Dec 23, 2004 #4 Thank you both!! Arvi Laanemets said: Hi =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) or =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...)) (instead "" you can use 0 as return value for error too) Click to expand...
Thank you both!! Arvi Laanemets said: Hi =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...)) or =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...)) (instead "" you can use 0 as return value for error too) Click to expand...