Dashboard Mode - Why date calculations drive business logic
Business Question
How can we use date calculations to track project deadlines and measure overdue tasks?
How can we use date calculations to track project deadlines and measure overdue tasks?
| Task | Start Date | Due Date | Completion Date |
|---|---|---|---|
| Design | 2024-06-01 | 2024-06-10 | 2024-06-09 |
| Development | 2024-06-05 | 2024-06-20 | 2024-06-22 |
| Testing | 2024-06-15 | 2024-06-25 | |
| Deployment | 2024-06-26 | 2024-06-30 | |
| Review | 2024-07-01 | 2024-07-05 |
=COUNTA(A2:A6)=COUNTIFS(D2:D6, ">&" & C2:C6, C2:C6, "<" & TODAY()) + COUNTIFS(D2:D6, "", C2:C6, "<" & TODAY())=IF(D2="", MAX(0, TODAY()-C2), MAX(0, D2-C2))+----------------------+----------------------+ | Total Tasks (KPI) | Overdue Tasks (KPI) | +----------------------+----------------------+ | Overdue Tasks by Days Chart | +---------------------------------------------------------------------+ | Tasks with Days Overdue Table | +---------------------------------------------------------------------+
Adding a date filter (e.g., filter tasks by Start Date or Due Date range) updates the KPI cards, the overdue days table, and the chart to reflect only tasks within the selected date range.
If you add a filter to show only tasks with Due Date after 2024-06-15, which components update and what changes?