I am looking to create two summary sheet fields.
Formula 1. Count the number of tasks that are due within the next 14 days
- Constraints:
- Status must be "Not Started, In Progress, OR Scheduled
- Due Date must be within the next 14 days
Formula 2. Count the number of tasks that are due within the next 14 days but also return values of tasks where due date is older then TODAY.
- Constraints:
- Status must be "Not Started, In Progress, OR Scheduled
- Due Date must be within the next 14 days but also older then TODAY.
This formula gets me part of #1. I am having issues adding multiple statuses and getting the correct returns. Any help would be greatly appreciated.
=COUNTIFS(Status:Status, "In Progress", [Due Date]:[Due Date], AND(@cell >= TODAY(), @cell <= TODAY(+14)))