Counting multiple cells using a criteria

J

John

I am trying to count the number of times "c" appears in a column but I need
to limit the count using a second criteria found in another column
 
D

Domenic

Try something like this...

=SUMPRODUCT(--(A1:A100="c"),--(B1:B100="x"))

If 'x' is a number, remove the quotes.

Hope this helps!
 
Top