I have a form created to capture checklist Yes/No items for safety observations. There are several questions that are grouped by type (i.e. General, Electric, etc.). I have figured out how to use the COUNTIF formula to count the "No" answers for each group of questions to establish where the risks are taking place:
=COUNTIF([Workplace is clean & orderly (GS1)]:[PPE expectations being followed (GS8)], "❌ No")
But now I want to add in additional criteria to factor into this formula, specifically by Location and by Month, so we can trend risk areas month-to-month for each site. I tried the COUNTIFS formula, but keep getting Invalid Argument:
=COUNTIFS([Workplace is clean & orderly (GS1)]:[PPE expectations being followed (GS8)], "❌ No", [Location]:[Location], "Location 1", [Month]:[Month], "April")
Any ideas on where I am going wrong? Thanks in advance!