VLOOKUP - 0 instead of # N/A

  • Thread starter Thread starter Jaleel
  • Start date Start date
J

Jaleel

Hi,

=VLOOKUP(G3,A:D,4,FALSE)

When I put the above formula, if the lookup_value is not available in the
table_array #N/A appears in the result. How can I modify the formula to get
the result as 0 instead of #N/A?

Can anybody help?

Jaleel
 
this may do what you want

=IF(ISNA(VLOOKUP(G3,A:D,4,FALSE)),0,VLOOKUP(G3,A:D,4,FALSE))
 
Back
Top