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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Cumulative Sum, DAX

Hi all,

 

I'm having trouble creating a calculated column (or measure) in DAX that will return a running total based on groups.  The data I'm working with looks like this:

Capture.JPG

 

I need the Requirement Quantity summed up as a running total, which would start over every time the 'Item Number' field changes.  As you can see, I've also added a Conditional Index field through M Query.  But I've tried almost every single DAX formula I've found on this forum and elsewhere and have had absolutely no luck with it.  I managed to create a running total in M Query, but the query takes hours to refresh.  Any ideas on how I can solve this?  Thanks in advance!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

This is my ussual way of calculating running totals but it should do the trick for you aswell.

Calculated column =
CALCULATE (
    SUM ( 'Table'[Requirement quantity] );
// Calculate over the entire table ALL ( 'Table' );
// Filter where item numbers are the same 'Table'[Item Number] = EARLIER ( 'Table'[Item NumberT] );
// Filter the order for calculating 'Table'[Index] <= EARLIER ( 'Table'[Index] ) )

Always here to help.

Kind regards

Joren Venema

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

This is my ussual way of calculating running totals but it should do the trick for you aswell.

Calculated column =
CALCULATE (
    SUM ( 'Table'[Requirement quantity] );
// Calculate over the entire table ALL ( 'Table' );
// Filter where item numbers are the same 'Table'[Item Number] = EARLIER ( 'Table'[Item NumberT] );
// Filter the order for calculating 'Table'[Index] <= EARLIER ( 'Table'[Index] ) )

Always here to help.

Kind regards

Joren Venema

Anonymous
Not applicable

Thanks Joren, this worked!  You're the man!!!

Nathaniel_C
Community Champion
Community Champion

Total Requirement measure = SUM(table[Requirement Quantity])
======================================================
Total Cumulative =
VAR MaxDate =
    MAX ( table[Requirement Date] ) -- Saves the last visible date
VAR ReqQuantity =
    CALCULATE (
        [Total Requirement measure],
        -- Computes hours
        table[Requirement Date] <= MaxDate,
        -- Where date is before the last visible date
        ALLEXCEPT (
            table,
            table[Buyer Group ]
        )
    )
RETURN
    ReqQuantity

Hi @Anonymous 
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors