- Jul 20, 2001
- 72,328
- 32,862
- 136
This formula sums the value in column D if column C contains "Apples".
=SUMIF(C22:C43, "Apples", D22
43)
This formula sums if the value in column D is greater than zero.
=SUMIF(D22
43,">0")
What I'd like to do is write a formula that sums the values in column D if both conditions are true, that is, column C contains Apples and the value in column D is greater than zero. Any ideas on how write the AND statement? Thanks.
=SUMIF(C22:C43, "Apples", D22
This formula sums if the value in column D is greater than zero.
=SUMIF(D22
What I'd like to do is write a formula that sums the values in column D if both conditions are true, that is, column C contains Apples and the value in column D is greater than zero. Any ideas on how write the AND statement? Thanks.