Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
93 | |
60 | |
43 | |
35 | |
34 |