Dashboard Mode - TEXT formatting for dates
Dashboard Goal
Show different ways to display dates using Excel's TEXT function for easy reading and reporting.
Show different ways to display dates using Excel's TEXT function for easy reading and reporting.
| Date | Event |
|---|---|
| 2024-01-15 | Project Start |
| 2024-02-28 | First Review |
| 2024-03-10 | Mid Project |
| 2024-04-25 | Final Submission |
| 2024-05-05 | Project Close |
=A2 (copy down)=TEXT(A2,"MMMM dd, yyyy")=TEXT(A2,"dd-mmm-yy")=TEXT(A2,"ddd, MMM dd")=TEXT(A2,"yyyy")+----------------+---------------------------+ | Original Date | Date as "MMMM DD, YYYY" | | (Raw) | | +----------------+---------------------------+ | Date as "DD- | Date as "ddd, MMM DD" | | MMM-YY" | | +----------------+---------------------------+ | Year Only | +-------------------------------+
Add a filter to select events by month or year. When you pick a month or year, all date formats update to show only dates for that selection. This helps compare how dates look in different formats for the chosen time.
If you add a filter to show only events in March 2024, which dates appear in each component? Answer: Only the row with date 2024-03-10 will show in all date format cards.