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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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