Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |