SUM

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

Guest

hello,
i have some problem which i mentioned is as under:

A1 B1(this cell has vlookup formula) C1(result)
1000 900 =SUM(A1-B1)

#VALUE! error is coming out if B1 is empty otherwise is ok.

thanks in advance.
 
=IF(ISNA(VLOOKUP(...)),0,VLOOKUP(....)

This puts a 0 in place of a blank or #N/A error. Then your sum will work
correctly.

Dave
 
Back
Top