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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
AlbertoPinon
Frequent Visitor

Help with Cumulative Total from Clients Balance Table

This is a clients balance table

 

AlbertoPinon_1-1663627416131.png

 

 

I want the Column that says [Cumulative Saldo Final] to output in the table:
$175,948.8
$189,462.8
$203,517.36
$27,568.56
$66,418.72
and so on

So basically the column [Cargo] should add to the cumulative column, and the [Abono] column should subtract from the cumulative column.

 

Thank you very much, I've been struggling with this

 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @AlbertoPinon 

 

Try this measure:

Cumulative Saldo Final = 
CALCULATE (
    SUM ( 'Table'[Cargo] ) - SUM ( 'Table'[Abono] ),
    REMOVEFILTERS ( 'Table'[Fecha] ),
    'Table'[Fecha] <= MAX ( 'Table'[Fecha] )
)

 

Output:

VahidDM_1-1663629821419.png

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

Hi @AlbertoPinon 

 

Try this measure:

Cumulative Saldo Final = 
CALCULATE (
    SUM ( 'Table'[Cargo] ) - SUM ( 'Table'[Abono] ),
    REMOVEFILTERS ( 'Table'[Fecha] ),
    'Table'[Fecha] <= MAX ( 'Table'[Fecha] )
)

 

Output:

VahidDM_1-1663629821419.png

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

Worked! Thanks a lot

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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