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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.