Hi All
I am trying to get a count on total number of overdue items on a different sheet by project manager. I have tried multiple variations of the below formula but have yet to find one that works.
=COUNTIF(AND({Data Range 1}, CONTAINS("Carolyn Kuo", @cell), {Data Range 1} = "Carolyn Kuo"))
=COUNTIF({Data Range 1}, CONTAINS([Project Manager]@row, @cell)), AND({Data Range 3} = "Overdue")
=COUNTIFS({Data Range 3}, CONTAINS("Overdue", @cell), {Data Range 1}, CONTAINS("Carolyn Kuo"))
Basically, if the Project Manager Column on the sheet "Data" contains a specific project managers name and the status column on the sheet "Data" states Overdue I want it to count on a different sheet. I can get it to count the number of times a Project Managers name appears on the sheet "Data", but when I add the overdue component I get errors.
I dont feel like this should be that hard to do but I cannot seem to figure it out.