I am trying to create a COUNTIF formula with multiple criteria. I have created a functioning formula for each condition but it stops working when I combine them together. In the example pictured, I would like to count the number of occurrences for each proctor when the duration is greater than or equal to 05:00 (and then conversely when the duration is less than 05:00). The calculations are happening on a second grid, where the calculation is based on the value in the Proctor Name column.
Searching in the Community helped me to create each half of the formula (and SheetName PROCTORS has been set as the range to include both proctor columns):
to count number of occurrences for each proctor: =COUNTIF({SheetName PROCTORS}, HAS(@cell, [PROCTOR NAME]1))
to count number of occurrences for Duration greater than or equal to 05:00: =countif({SheetName DURATION}, >="05:00")
I've tried combining these two conditions with a COUNTIFS but it keeps coming up with an error: =COUNTIFS({SheetName PROCTORS}, HAS(@cell, [PROCTOR NAME]1), {SheetName DURATION}, >="05:00").
Any help would be much appreciated!