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.
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.
Schedule a short Teams meeting to discuss your question
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.
Schedule a short Teams meeting to discuss your question
User | Count |
---|---|
84 | |
79 | |
71 | |
48 | |
43 |
User | Count |
---|---|
111 | |
54 | |
50 | |
40 | |
40 |