One column of my sheet is a 5-symbol Harvey ball (Sunny, Partly Sunny, Cloudy, Rainy, Stormy) to show the relative health of a row.
Another column is a Contact List type that shows to whom a row is assigned.
I would like to extract the total number of non-Sunny rows per team member.
What I have done is to add two columns. The first is a list of each team member. I'd like the second column to be the total number of non-Sunny rows that each team member has.
Here's the formula I used:
=IF([Assigned To]1:[Assigned To]409 = "John Smith", (COUNTIFS([At Risk]1:[At Risk]409, <>"", [At Risk]1:[At Risk]409, <>"Sunny")))
It returns an #INVALID OPERATION error. Does anybody have a suggestion on how I might extract the total number of non-Sunny Harvey balls by team member?