Harvey said:
Is there a way to add a column that contains some #DIV/0! values and ignore
those cells in the calculation? Or do I have to provide for the DIV in the
individual cells with an IF statement of some kind?
You shouldn't be dividing by 0 since that's impossible. The "#DIV/0!"
is an error message saying the calculation can't be done, and since
that cell is referenced in the summing, that can't be done either.
You'll need to either fix the data in the cells referenced by the
division calculation, or if they are correct and can be 0 at times,
then you'll need to change the formula in the division column from:
= A1 / B1
to something like:
= If (B1 = 0, 0, A1 / B1) if you want 0's displayed
or = If (B1 = 0, "", A1 / B1) if you want the cells left empty
Both check to see if B1 is 0 (or empty) and if it is puts a 0 or ""
(nothing) into the cell, otherwise it does the division. Since there's
no longer any calculation errors the column to be summed and / or those
cells to be used in other calculations.
Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)