In range E5:E13, assume the entries are
1
2
#DIV/0!
4
5
6
#N/A
8
9
In cell I9, one may want to sum up the figures from cells E5,E7,E11 and E13. If one supplies the individual cell references to the SUM function, then the result will be a #DIV/0! error because the SUM function is intolerant towards errors supplied in its range. The formula which will resolve this problem is:
=SUMPRODUCT(SUMIF(INDIRECT(A11:A14),”>-1E100″))
A11:A14 has E5,E7,E11 and E13.
Ignore errors while adding non contiguous cells of a range
{ 7 Comments }