polarisking
Member
My range has mostly numeric values, but also includes some imputed errors such as #N/A and #DIV/0!. I'd like to be able to use SUMPRODUCT to total up only those non-error cells in the range that qualify vs. a numeric condition. For example:
Range A1:A6 equals:
4
5
#N/A
7
10
1
Range B1:B6 equals:
A
B
A
A
B
A
I'd like to, using SUMPRODUCT, total the values in Column A >=5 where the value in Column B is equal to A. But, because A3 = #N/A, SUMPRODUCT returns #N/A.
This doesn't work, but the formula would function something like
SUMPRODUCT = ( AND((ISNUMERIC(A1:A6)), (A1:A6 >= 5)) * (B1:B6 = "A"))
Answer should be 7. Anyone seen this issue before?
Range A1:A6 equals:
4
5
#N/A
7
10
1
Range B1:B6 equals:
A
B
A
A
B
A
I'd like to, using SUMPRODUCT, total the values in Column A >=5 where the value in Column B is equal to A. But, because A3 = #N/A, SUMPRODUCT returns #N/A.
This doesn't work, but the formula would function something like
SUMPRODUCT = ( AND((ISNUMERIC(A1:A6)), (A1:A6 >= 5)) * (B1:B6 = "A"))
Answer should be 7. Anyone seen this issue before?