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

Cumulative sum reset every start of year

Hello,

 

I am trying to run a cumulative sum that start the sum every begining of the year.  I'm not sure how to do the reset every year despite going through pages of the forum.  I've used the following formula to create the "Cumu Return SKU Price $":

 

Cumu Return SKU Price $ = 
CALCULATE(
SUMX('30 BME Customer Return','30 BME Customer Return'[Return Unit Price $]),
filter(
all('30 BME Customer Return'),
'30 BME Customer Return'[Creation Date]<=max('30 BME Customer Return'[Creation Date])))

But this is what I'm getting: the cummulative is not resetting in January of the next year.

 

 Capture.JPG

 

Any guidance would be greatly appreciated.  

 

thanks

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Probably something along the lines of:

 

Cumu Return SKU Price $ = 
VAR __year = MAX([Year])
RETURN
CALCULATE(
SUMX('30 BME Customer Return','30 BME Customer Return'[Return Unit Price $]),
filter(
all('30 BME Customer Return'),
'30 BME Customer Return'[Creation Date]<=max('30 BME Customer Return'[Creation Date]) && YEAR([Creation Date]) = __year))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

Probably something along the lines of:

 

Cumu Return SKU Price $ = 
VAR __year = MAX([Year])
RETURN
CALCULATE(
SUMX('30 BME Customer Return','30 BME Customer Return'[Return Unit Price $]),
filter(
all('30 BME Customer Return'),
'30 BME Customer Return'[Creation Date]<=max('30 BME Customer Return'[Creation Date]) && YEAR([Creation Date]) = __year))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

thanks Greg for the suggestion.  Glad that i now know how to reset by a specific period!  I've teaked your suggestion a wee bit to get the calculation right.  

 

Cumu Return SKU Price $ = 
VAR __year = MAX('30 BME Customer Return'[Creation Year])
RETURN
CALCULATE(
SUM ('30 BME Customer Return'[Return SKU Price $]),
filter(
all('30 BME Customer Return'),
'30 BME Customer Return'[Creation Date]<=max('30 BME Customer Return'[Creation Date]) && YEAR([Creation Date]) = __year))

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.