Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a coworker that created a date field in a dashboard (see below). Based on today's date the field would read 2021-6. My concern is how will this field appear once we reach January 2022. How do I change this dax formula so that when we are in January 2022 the field shows December 2021?
Solved! Go to Solution.
Hello @Anonymous,
You're right, the code for your month Display wouldn't return the correct result for January 2022.
You can create a measure with this code :
VAR _LastMonth = EOMONTH( TODAY(), -1)
VAR _Formatted = FORMAT( _LastMonth, "YYYY-MM")
RETURN _Formatted
Example :
If today's date is 2022-01-06,
The first variable will return 2021-12-31
The second variable will format the result to show 2021-12
You can also change the format to "MMM YYYY" if you want.
This worked! Thank you for your help!
Hello @Anonymous,
You're right, the code for your month Display wouldn't return the correct result for January 2022.
You can create a measure with this code :
VAR _LastMonth = EOMONTH( TODAY(), -1)
VAR _Formatted = FORMAT( _LastMonth, "YYYY-MM")
RETURN _Formatted
Example :
If today's date is 2022-01-06,
The first variable will return 2021-12-31
The second variable will format the result to show 2021-12
You can also change the format to "MMM YYYY" if you want.
| User | Count |
|---|---|
| 21 | |
| 19 | |
| 17 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 60 | |
| 55 | |
| 47 | |
| 42 | |
| 37 |