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
Anonymous
Not applicable

Running Total

I have a created date calculated column

Total sum requirements as a measure

I want to create a running total and replace the total sum requirements by running total

Unfortunately, the quick measure of running total doesn't return the correct results.

 

Here is the calculation

Total Requirements running total in Created 2 =

CALCULATE(

    [Total Requirements],

    FILTER(

        ALLSELECTED('SP Fit/Gap'[Created]),

        ISONORAFTER('SP Fit/Gap'[Created], MAX('SP Fit/Gap'[Created]), DESC)

    )

)

 

Here is the visual

leharkapil_0-1602829535084.png

 

 

5 REPLIES 5
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Try this:

Total Requirements running total in Created 2 =
CALCULATE (
    [Total Requirements],
    FILTER (
        ALLSELECTED ( 'SP Fit/Gap' ),
        'SP Fit/Gap'[Sp or Gap] = MAX ( 'SP Fit/Gap'[Sp or Gap] )
            && 'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
    )
)

 

If this doesn't work either, please share me your .pbix file for test. Please remove sensitive information. It is suggested to upload your file to OneDrive for Business and then paste the link here.

 

 

Best regards

Icey

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

themistoklis
Community Champion
Community Champion

@Anonymous 

 

Try any of the following 2

 

 

Total Requirements running total in Created 2 =
CALCULATE (
    [Total Requirements],
    FILTER (
        ALLSELECTED ( 'SP Fit/Gap' ),
        'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
    )
)

-- OR 

Total Requirements running total in Created 2 =
CALCULATE (
    [Total Requirements],
    FILTER (
        ALL ( 'SP Fit/Gap' ),
        'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
    )
)

 

Anonymous
Not applicable

After the calculation, this is how the chart looks like

 

leharkapil_0-1602834294277.png

 

@Anonymous 

 

Also can you add the date field, the date value and running value in a table and share a snapshot with us so as to see how it looks like?

@Anonymous 

 

Can you share the workspace with us?

Mask any sensitive data

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