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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
This is a clients balance table
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
Solved! Go to Solution.
Try this measure:
Cumulative Saldo Final =
CALCULATE (
SUM ( 'Table'[Cargo] ) - SUM ( 'Table'[Abono] ),
REMOVEFILTERS ( 'Table'[Fecha] ),
'Table'[Fecha] <= MAX ( 'Table'[Fecha] )
)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Try this measure:
Cumulative Saldo Final =
CALCULATE (
SUM ( 'Table'[Cargo] ) - SUM ( 'Table'[Abono] ),
REMOVEFILTERS ( 'Table'[Fecha] ),
'Table'[Fecha] <= MAX ( 'Table'[Fecha] )
)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Worked! Thanks a lot
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.