Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
"that works year over year" - That's the trick
I've got one that works if the year is the same ie. I can get June 2022 if it's currently July 2022 but once it changes to January 2023 I can't get December 2022. I need a column on my date table and not a measure as I need to return month names for my visuals. I'm pretty sure PREVIOUSMONTH and DATEADD aren't going to work here but I'm happy if I’m wrong. I need it to be variable as well, meaning I can easily change to 2 month prior as well, ideally by simply changing a mathematical component.
Thanks!
Here's what I currently have.
Prior Month Column = IF(YEAR(TODAY()) = YEAR(Dates[Date]) && (MONTH(TODAY()) - 1) = MONTH(Dates[Date]), "Yes", "No")
Solved! Go to Solution.
Hey @DJBAJG ,
this DAX statement shows how to create a running month index column:
calendar =
var dateStart = DATE( 2022 , 1 , 1 )
var dateEnd = DATE( 2023 , 12, 31 )
return
ADDCOLUMNS(
CALENDAR(
dateStart
, dateEnd
)
, "runningMonthIndexCalendar"
, var YearsNoOf = YEAR( [Date] ) - YEAR( dateStart )
var MonthNoOf = MONTH( [Date] )
return
YearsNoOf * 12 + MonthNoOf
)
Here is a screenshot that shows that the index is incremented from December 2022 to January 2023.
Using this index will help to get the previous month's name or will help to shift dates by months for more sophisticated date-related calculations.
This adds a column to the calendar table that holds the prev month name:
, "Year Month (prev)"
, var eomprev = EOMONTH( [Date] , -1 )
return
FORMAT( eomprev , "YYYY MMM" )
Another screenshot:
Regards,
Tom
Hey @DJBAJG ,
this DAX statement shows how to create a running month index column:
calendar =
var dateStart = DATE( 2022 , 1 , 1 )
var dateEnd = DATE( 2023 , 12, 31 )
return
ADDCOLUMNS(
CALENDAR(
dateStart
, dateEnd
)
, "runningMonthIndexCalendar"
, var YearsNoOf = YEAR( [Date] ) - YEAR( dateStart )
var MonthNoOf = MONTH( [Date] )
return
YearsNoOf * 12 + MonthNoOf
)
Here is a screenshot that shows that the index is incremented from December 2022 to January 2023.
Using this index will help to get the previous month's name or will help to shift dates by months for more sophisticated date-related calculations.
This adds a column to the calendar table that holds the prev month name:
, "Year Month (prev)"
, var eomprev = EOMONTH( [Date] , -1 )
return
FORMAT( eomprev , "YYYY MMM" )
Another screenshot:
Regards,
Tom
Hi Tom
How would I go about incorporating this DAX into an existing calendar? I believe this builds a new calendar table from scratch with hard coded start and end dates. I'll need dynamic date capabilities as new data is added monthly.
Thanks.
Played around and got it to work.
Here's how to add it to an existing calendar table:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
64 | |
51 | |
36 | |
26 |
User | Count |
---|---|
85 | |
55 | |
45 | |
44 | |
36 |