I am looking to get an accurate count of someone’s workload. I want to count if a specific person’s workload meets multiple stage criterion such as “Execution” and “Planning”
The Support Required column is a contact list. The Stage column in a dropdown list.
I am pulling this information into a separate sheet hence the {} for the cross sheet formula.
The below formula works and counts all projects they are listed on under “Support Required”
=COUNTIF({Master Sheet Support Required}, FIND("Denise", @cell) > 0)
When I try to add additional criteria it comes back at #incorrect agreement.
=COUNTIFS({Master Sheet Support Required}, FIND("Denise", @cell) > 0, AND(IF({Master Sheet Stage} = "Execution")))