SOLVED

Counting rows that have specific critera choices in two drop boxes

Copper Contributor

I have a sheet that keeps track of whether the issues are Critical, High, Medium, and Low. I also keep track of whether these issues are Not started, In Progress, and Complete. I created a dashboard on another tab that notes by month how many are Not Started, Complete or In Progress. I want to also keep track of which Critical and High issues are Not Started or In Progress. In sum counting two drop down boxes in any row that have the specific criteria (i.e., Critical and Not started, Critical and In Progress or High and Not Started and High and In Progress ). I've tried several solutions, but am unable to find a formula that works. Please advise.

The formula that works for counting just one drop down box is: =COUNTIF('2021'!M1528:M1800,"in progress")

2 Replies
best response confirmed by dmbeach24 (Copper Contributor)
Solution

@dmbeach24 

Perhaps the COUNTIFS function:

 

=COUNTIFS('2021'!M1528:M1800,"in progress",'2021'!N1528:N1800,"critical")

 

A pivot table would be a good way to count the number of occurrences of all combinations: add the Not Started/In Progress/Complete column/field to the Rows area, the Critical/High/Medium/Low column/field to the Columns area, and either of these to the Values area.

1 best response

Accepted Solutions
best response confirmed by dmbeach24 (Copper Contributor)
Solution

@dmbeach24 

Perhaps the COUNTIFS function:

 

=COUNTIFS('2021'!M1528:M1800,"in progress",'2021'!N1528:N1800,"critical")

 

A pivot table would be a good way to count the number of occurrences of all combinations: add the Not Started/In Progress/Complete column/field to the Rows area, the Critical/High/Medium/Low column/field to the Columns area, and either of these to the Values area.

View solution in original post