I'm struggling with some syntax. I have the following fields:
I want to count status by team lead. The team lead is a dropdown allowing multiple entries, status is a dropdown with single entry. I found that it counts Joe, but can't find Jane.
I have two references to this table - {Retail - Status} and {Retail - Lead)
My original syntax s as follows:
=COUNTIFS({Retail - Status}, "Red", {Retail - Lead}, "Jane Jones") – Picks up Joe, but will not pick up Jane
Tried some variations:
=COUNTIFS (CONTAINS ("Green", {Retail – Status}, "TRUE", "FALSE"), CONTAINS ("Jane Jones", {Retail – Lead}, "TRUE", "FALSE").
=COUNTIFS(FIND("Jenny O’Rourke", {Retail-Lead}) > 0, {Retail-Status}, "Green")
Any assistance is appreciated