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

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

Reply
Krijgersss
Helper II
Helper II

need help with a running total measure

Hello i need some help with a running total measure. i have this running total measure:

Voorlopig totaal van revenue in month =
CALCULATE(
    SUM('newfysic view_store_performance_per_month'[revenue]),
    FILTER(
        CALCULATETABLE(
            SUMMARIZE(
                'newfysic dimension_date',
                'newfysic dimension_date'[period],
                'newfysic dimension_date'[month]
            ),
            ALLSELECTED('newfysic dimension_date')
        ),
        ISONORAFTER(
            'newfysic dimension_date'[period], MAX('newfysic dimension_date'[period]), DESC,
            'newfysic dimension_date'[month], MAX('newfysic dimension_date'[month]), DESC
        )
    )
)

but this measure is cumulative i  just want a running total measure that isnt cumulative does somebody now how i can maken that or what i need to change 

many thanks 
1 REPLY 1
tharunkumarRTK
Super User
Super User

@Krijgersss 

You can follow this pattern to achieve running total https://www.sqlbi.com/articles/computing-running-totals-in-dax/
Also, if you are using the latest version of Power BI desktop then you can use visual calculations to avoid complex DAX
 https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-visual-calculations-overview


If the post helps please give a thumbs up


If it solves your issue, please accept it as the solution to help the other members find it more quickly.


Tharun



Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.