Dashboard Mode - Date-based formatting
Goal
Show how to highlight dates in a list based on whether they are past, today, or upcoming using color formatting.
Show how to highlight dates in a list based on whether they are past, today, or upcoming using color formatting.
| Event | Date |
|---|---|
| Project Start | 2024-06-01 |
| Design Review | 2024-06-15 |
| Development Complete | 2024-06-25 |
| Testing | 2024-07-05 |
| Launch | 2024-07-15 |
| Post-Launch Review | 2024-07-30 |
=COUNTIF(B2:B7, ">&" & TODAY())=B2 < TODAY()=B2 = TODAY()=B2 > TODAY()+-----------------------+-----------------------+ | Upcoming Events Count | | | (KPI Card) | | +-----------------------+ | | | | Events Table | | (with date formatting) | | | +-----------------------------------------------+
The dashboard updates automatically each day because the formulas use TODAY(). The conditional formatting changes colors based on the current date. The KPI card count updates to show how many events are upcoming from today forward.
If you change your computer date to 2024-06-15, which events will be highlighted as today, past, and future? How does the Upcoming Events Count change?