How can I create a filter that shows only the last 3 months of a date field? I have a column of data called Created Date and in a specific dashboard/component I want to show data for the last three months. Instead of manually selecting the last three months every month was hoping to create a formula of some sort so that the dashboard components update each month on it's own. Is this possible?
Thanks,
Arun
Hi @aviswana27,
Create a calculated to check if the date is under the last 3 month or not, and then drag this new created calculated into a slicer visual to filter the data.
Last3Month = IF(AND(YEAR(TODAY())=YEAR('Date'[CalendarDate]),(MONTH(TODAY())-MONTH('Date'[CalendarDate]))<3),"Last 3 month","Other")
Regards,
Charlie Liao
MonthsAgo=DATEDIFF(TODAY(),[Created Date],MONTH)
Create as a new column and then use that to filter < 2.
If you need year factored in, you might have to do some slighly more complicated calculations.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
242 | |
50 | |
48 | |
44 | |
42 |
User | Count |
---|---|
297 | |
211 | |
82 | |
75 | |
65 |