I've been using COUNTIFS within a report with 3 criteria with no issues until I tried to add a 4th criteria. I'm thinking it has to do with pulling 2 different criteria from the same column as when I tried it with a 4th criteria but from a different column it worked. When I tried pulling the 4th criteria from the same column, I also tried to give the area a different name but that also did not work (so the same column but I added a "2" ot the field Sheet Reference Name).
My goal is to determine the total number of tickets that that an Agent in the Telecom Group takes with a ticket type of "Phones" and also "IPC".
Here is what I tried but did not work:
=COUNTIFS({Group}, "Telecom”, {Agent}, "Mickey Mouse", {TixType}, "Phones", {TixType}, “IPC”)
= COUNTIFS({Group}, "Telecom", {Agent}, " Mickey Mouse ", {TixType}, "Phone", {TixType2}, “IPC”)
Worked with a different column for a 4th criteria:
= COUNTIFS({Group}, "Telecom", {Agent}, " Mickey Mouse ", {TixType}, "Phone", {Dept}, “LC”)
So the problem seems to be trying to pull 2 criteria from the same column. Is there a fix?