COUNTIFS() is an inclusive function, all of the tests within must be true for the count to go up. What you were trying to do was evaluate each sheet separately, a completely different idea.
A good use of COUNTIFS would be to count how many rows in a single data table had:
1) "Cat" in column A
AND
2) "Dog" in column B
AND
3) "Bird" in column C
=COUNTIFS(A:A, "Cat", B:B, "Dog", C:C, "Bird")
So, in this sample data, the answer would be ONE, because only row 3 has all 3 tests as true at the same time:
If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.
Bookmarks