Hello,
I've having difficulty getting a COUNTIFS formula to work correctly, I'm not sure what is wrong with my syntax.
I'm trying to return the count/number of tasks that will be coming due within the next 5 days for a particular project. I've tried a number of variations (listed below), but the count received never matches what actually reflects in the sheet, or what would be returned if a ran a report.
=COUNTIFS([Assigned To]:[Assigned To], "Person", [Status]:[Status], <>"Complete", [End Date]:[End Date], <TODAY(+5))
=COUNTIFS([Assigned To]:[Assigned To], "Person", [Status]:[Status], <>"Complete", [End Date]:[End Date], <=TODAY(+5))
=COUNTIFS([Assigned To]:[Assigned To], "Person", [Status]:[Status], <>"Complete", [End Date]:[End Date], <=TODAY(5))
etc. etc. Any suggestions?
Also, in a perfect world, the total would not include tasks counted to be due that day, but I was just trying to get any variation to work.