Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All
I have post a question on :-
@amitchandak offer me below expression work fine :-
Curr month = format(today(),"mmm-yyyy")
Now i try to modify the above expression to display last month :-
Curr month -1 = format(today()-1,"mmm-yyyy")
But it does not work. Hope some one can help me.
Paul
Solved! Go to Solution.
Hi, @admin11
According to your description and DAX formula, I think you can try this measure to get the last month using the Format() function:
Measure =
FORMAT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmm-yyyy")
And place this measure into a card chart:
And you can get what you want.
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @admin11 ,
Change your DAX Expression as shown below:
Previous Month = FORMAT(EDATE(NOW(),-1),"MMM-YYYY")
Please accept this as a solution if your question has been answered !!
Appreciate a Kudos 😀
Hi, @admin11
According to your description and DAX formula, I think you can try this measure to get the last month using the Format() function:
Measure =
FORMAT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmm-yyyy")
And place this measure into a card chart:
And you can get what you want.
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!