Forum Discussion
MontyKnoll
May 02, 2023Copper Contributor
COUNTIF formula to exclusively count when all criterias are listed.
Hi there. I've been trying to create a formula where it counts the amount of times a row contains ALL the criteria i have set out, and not just count when at least 1 of the criteria is counted. ...
- May 02, 2023
MontyKnoll Try this:
=SUM(COUNTIFS(C2:C26,"Group",B2:B26,{"Cold","Room Temp"}))
or use a pivot table.
Riny_van_Eekelen
May 02, 2023Platinum Contributor
MontyKnoll Try this:
=SUM(COUNTIFS(C2:C26,"Group",B2:B26,{"Cold","Room Temp"}))
or use a pivot table.
MontyKnoll
May 02, 2023Copper Contributor
It works! I knew there had to be a way. Thank you