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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Community Champion
Community Champion

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))


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

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))


Follow on LinkedIn
@ 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!:
DAX For Humans

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors