How to od a combined IF and AND in a matrix formula

M

murphyfilur

Hi,

What I want to do is counting a sum based on fulfilment of two criterias

=SUM(IF(AND(A1:A10=F1;B1:B10=F2);SUM(C1:C10))

Regards

murphy
 
O

Ola

Here are two options:

The count of all C's that fullfill the A and B criterias.
=SUMPRODUCT((A1:A10=F1)*(B1:B10=F2))

The sum...
=SUMPRODUCT((A1:A10=F1)*(B1:B10=F2)*(C1:C10))

Hope it helped
Ola Sandström
 
Top