Dashboard Mode - DATEDIF for differences
Goal
Find how many days, months, and years passed between two dates for project tracking.
Find how many days, months, and years passed between two dates for project tracking.
| Project | Start Date | End Date |
|---|---|---|
| Website Redesign | 2023-01-15 | 2023-04-20 |
| App Launch | 2022-11-01 | 2023-03-15 |
| Marketing Campaign | 2023-02-10 | 2023-05-05 |
| Customer Survey | 2023-03-01 | 2023-03-30 |
| Product Testing | 2023-01-20 | 2023-02-28 |
=DATEDIF(B2,C2,"D")=DATEDIF(B2,C2,"M")=DATEDIF(B2,C2,"Y")+---------------------------+ | Project Dates | | +-----------------------+ | | | Project | Start | End | | | +-----------------------+ | | | | +-----------------------+ | | | Days | Months | Years | | | +-----------------------+ | +---------------------------+
Add a filter to select a project name. When you pick a project, the Days, Months, and Years cards update to show only that project's date differences.
If you filter to show only "App Launch", what is the number of months difference shown?
Answer: 4 months (from 2022-11-01 to 2023-03-15)