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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
vaso
Frequent Visitor

Running Total

Hi I have a table named 'Kartela' with posting date and amount i need to build a measure according to other solutions in the comunity but it does not completely work . When I keep the table simple it works

vaso_0-1705183137772.png

 

but when i add more info like the remarks of the movement is not working

vaso_1-1705183138203.png

 

any idea how to fix it ?

thea measure is

Running Total = Calculate ( SUM(kartela[blc]), FILTER( ALL('kartela'[Posting Date] ),'kartela'[Posting Date] <= MAX('kartela'[Posting Date])))
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

HI, I am not sure how your desired outcome looks like, but try something like below whether it suits your requirement.

It is the running total by Remarks.

 

Running Total =
CALCULATE (
    SUM ( kartela[blc] ),
    FILTER (
        ALL ( 'kartela' ),
        kartela[Remarks] = MAX ( kartela[Remarks] )
            && 'kartela'[Posting Date] <= MAX ( 'kartela'[Posting Date] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
powerbi_zone
Frequent Visitor

Running total can be easily achieved using the method shown in this video .Hope this helps .

https://youtu.be/NBGGHdKxupk

 

There is also a method  for a non date value : https://youtu.be/85sKPSnc_GE

 

Jihwan_Kim
Super User
Super User

HI, I am not sure how your desired outcome looks like, but try something like below whether it suits your requirement.

It is the running total by Remarks.

 

Running Total =
CALCULATE (
    SUM ( kartela[blc] ),
    FILTER (
        ALL ( 'kartela' ),
        kartela[Remarks] = MAX ( kartela[Remarks] )
            && 'kartela'[Posting Date] <= MAX ( 'kartela'[Posting Date] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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