I am trying to create a formula that will count the number of \"Overdue\" people instead of \"Overdue\" cells. Each person has the multiple rows with their name in it. The c
What you are after is a distinct count. Excel has a function for that in the new Dynamic Array function set, which is in Office 365 Insider builds but not available to everyone. Right now, a distinct count requires a few tricks.
For example, you can create a pivot table with the names in the rows, filter the table to include only values where column X = Overdue and use a CountA() on the result rows.