I have this table and I would like to create a formula which would count values based on true conditions from column A
and column C
.
Example:
If in column A
value is M (male), and in column C
is YES, then it would count.
could anyone help me with this formula?
If youR data was in
A1:C100
then:Excel - all versions
=SUMPRODUCT(--(A1:A100="M"),--(C1:C100="Yes"))
Excel - 2007 onwards
=COUNTIFS(A1:A100,"M",C1:C100,"Yes")
Add the sheet name infront of the cell, e.g.:
Assumes the sheet name is "stock"