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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply

Find Previous Month and Year from datetime column

Hello all, 

 

I have an issue in finding Previous Month and Year. 

R_DateTime
01/07/2022 12:00:00 AM
01/08/2022 12:00:00 AM
01/09/2022 12:00:AM

 

I have a column called R_DateTime I have to find max month and year and Previous month and year from this column. 

Like CurrentMonth = Sep-2022 

        PreviousMonth = Aug-2022. 

The DAX should be dynamic if months get added later in future. 

 

Help would be much appreciated.

1 ACCEPTED SOLUTION
rsbin
Super User
Super User

@SandhyaGiriraj ,

Hope these two Measures solve your issue:

CurrentMonthYear = FORMAT( MAX(R[R_DateTime]), "mmm-yyyy" )

PreviousMonthYear = FORMAT(EOMONTH( MAX(R[R_DateTime]), -1 ), "mmm-yyyy" )

 

rsbin_0-1667853000882.png

Regards,

View solution in original post

1 REPLY 1
rsbin
Super User
Super User

@SandhyaGiriraj ,

Hope these two Measures solve your issue:

CurrentMonthYear = FORMAT( MAX(R[R_DateTime]), "mmm-yyyy" )

PreviousMonthYear = FORMAT(EOMONTH( MAX(R[R_DateTime]), -1 ), "mmm-yyyy" )

 

rsbin_0-1667853000882.png

Regards,

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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