I am working in the SUMMARY for my spreadsheet. I have Summary fields that:
- total count of records (141)
- total the count of records completed (42)
- Total the fields that have dues dates in the past (99)
- Total the fields that are in progress (13)
Given that 42+99+13 does NOT equal 141... something is not kosher. Thus I am working to count late tasks. That is I am attempting to count the field if:
- Due Date is in the past.... and
- Status does not contain"Completed"
=COUNTIFS(Heirarchy:Heirarchy, "2", [Due Date]:[Due Date], <TODAY(), Category:Category, "Compliance", Status:Status, NOT(CONTAINS("Completed",@cell)))
This returns a value, but it returns the same value when I do not include the Status parameters. (99)
I would be very appreciative of tany help.