Making N/A become a zero

J

Jaye

If I do a VLOOKUP and the resulting answer is #N/A, how can I get the result
to show as a zero (0) instead?
 
C

CarlosAntenna

=IF(ISNA("your vlookup here"),0,"your vlookup here")
or
=IF(ISERROR("your vlookup here"),0,"your vlookup here")
 
C

CLR

You can wrap your VLOOKUP formula in an IF statement, like.....

=IF(ISNA(YourVlookupFormula),0,YourVlookupFormula)

Vaya con Dios,
Chuck, CABGx3
 
Top