Sum values with #DIV/0

  • Thread starter Thread starter Guest
  • Start date Start date
Smidt57 said:
How do I sum mulitple cells if one of the cells contains #DIV/0!

One way ..

Instead of say in C4: =SUM(C1:C3)

Try in C4: =SUM(IF(NOT(ISERROR(C1:C3)),C1:C3))

Array-enter the formula in C4,
i.e. press CTRL+SHIFT+ENTER
(instead of just pressing ENTER)
 
=SUMIF(Range,"<>#DIV/0!")

or try to prevent the occurrence of the error in the range of interest.
 
Back
Top