Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hello,
I need your help if someone knows how to do this please, I have a table with values and I want to increment values by row.
The result I'm looking for is
do you have an idea if that is doable ?
Thank you so much for the support
Solved! Go to Solution.
Hi, @HE
please try the below.
By the way, the table name that I assigned is Data.
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.
Try any of the following 2:
Running Total Measure =
CALCULATE (
SUM ( Table[Value] ),
FILTER( ALL (Table ),
Table[Index] <= MAX( Table[Index] ))
)
Running Total COLUMN =
CALCULATE (
SUM ( 'Table'[Values] ),
ALL ( 'Table' ),
'Table'[Index] <= EARLIER ( 'Table'[Index] )
)
Try any of the following 2:
Running Total Measure =
CALCULATE (
SUM ( Table[Value] ),
FILTER( ALL (Table ),
Table[Index] <= MAX( Table[Index] ))
)
Running Total COLUMN =
CALCULATE (
SUM ( 'Table'[Values] ),
ALL ( 'Table' ),
'Table'[Index] <= EARLIER ( 'Table'[Index] )
)
Hi, @HE
please try the below.
By the way, the table name that I assigned is Data.
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.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
77 | |
76 | |
69 | |
48 | |
41 |
User | Count |
---|---|
62 | |
41 | |
33 | |
30 | |
29 |