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
sandeep_me
Helper I
Helper I

Rolling 12 Month Without current Month

Hello, 

 

I need an advice. I'm trying to calculate the Rolling 12M and what I need when it comes to the months of rolling 12  is as below 

If I'm looking in Jan 2022 then my 12 month previous should be Jan 2021 -Dec 2021 not Feb 2021-Jan 2021. Ideally in the the 12M the current month should be excluded. 

 I used the below DAX but ofcourse here the start date is Max(Date[day]). I tried replacing that with dateadd function to pick up a table to set up the start date month as previous month. But nothing was working 

 

Sales LY_R12 =
CALCULATE([Sales],DATESINPERIOD('Date'[Day],MAX('Date'[Day]),-12,MONTH))
 
Any Advice would be really helpful.
 
KR,
Sandeep 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@sandeep_me , try like

 

Sales LY_R12 =
CALCULATE([Sales],DATESINPERIOD('Date'[Day],eomonth(MAX('Date'[Day]),-1) ,-12,MONTH))

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@sandeep_me , try like

 

Sales LY_R12 =
CALCULATE([Sales],DATESINPERIOD('Date'[Day],eomonth(MAX('Date'[Day]),-1) ,-12,MONTH))

Thanks a lot @amitchandak . I used another logic eventhough I was getting the answer my total was not reading the last month total and your dax was giving the right totals as well. 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.