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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Velvetine27
Helper I
Helper I

Display last month in MMM-YY format

Hi,

 

I'm looking for a way to display last month in dax. I've come up with this dax :

CALCULATE(MAX('CalendarTable'[YearMonth]),DATEADD(CalendarTable[Date],-1,MONTH))
 
it works if we select single month. But for some reason when we select multiple months it still shows the max month.
 
Appreciate any help here. 
 
Thanks !
2 REPLIES 2
AjithPrasath
Resolver II
Resolver II

@Velvetine27 ,

 

Use the following code:

LAST_MONTH = 
VAR SelectedMonths = VALUES('CalendarTable'[YearMonth])
RETURN
    CALCULATE(MAX('CalendarTable'[YearMonth]), DATEADD('CalendarTable'[Date], -1, MONTH), SelectedMonths)

Please accept this as solution, if you got your answer and give kudos

Hi, 

 

Thanks for the answer given but unfortunately it doesn't work. When I select all months it doesn't seem to be displaying the correct month, and when i select one month it just displays blank.

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Kudoed Authors