Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
admin11
Memorable Member
Memorable Member

Hpw to modify expression " Current month = format(today(),"mmm-yyyy") " to last month ?

Hi All

 

I have post a question on :-

 

https://community.powerbi.com/t5/Desktop/How-to-make-button-label-display-current-month-March-2021/m...

 

@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

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

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:

v-robertq-msft_0-1614843073437.png

 

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.

View solution in original post

4 REPLIES 4
jaideepnema
Solution Sage
Solution Sage

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 😀

v-robertq-msft
Community Support
Community Support

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:

v-robertq-msft_0-1614843073437.png

 

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.

@v-robertq-msft 

Thank you very much , your approach very flexible.

Paul

amitchandak
Super User
Super User

@admin11 , for last month use eomonth

 

Curr month -1 = format(eomonth(today(),-1),"mmm-yyyy")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.