This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I spent a lot of time on this and now I'm looking for help.
I need to summarize lines of an ID. It sounds easy, but the result that I need is a little bit different, and I'm showing it below:
I'm looking for the yellow column. All the others I have.
I tried using SUM, SUMX, CALCULATE, SUMMARIZE, .....
There is anyone with an idea to solve this?
Thanks a lot.
Solved! Go to Solution.
Hi @Anonymous ,
If you want to calculate the column ACUM which you highlight in your image, you could try the steps below.
1. Create the index column in query editor.
2. Create the group index calculated column with dax.
group index =
RANKX (
FILTER ( 'Table', EARLIER ( 'Table'[ID] ) = 'Table'[ID] ),
'Table'[Index],
,
ASC
)
3. Create the measure with the formula below.
Measure =
CALCULATE (
SUM ( 'Table'[STATUS_] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[ID] ),
'Table'[group index] <= MAX ( 'Table'[group index] )
)
)
Here is the output.
If you still need help, free to ask.
Best Regards,
Cherry
Hi @Anonymous ,
If you want to calculate the column ACUM which you highlight in your image, you could try the steps below.
1. Create the index column in query editor.
2. Create the group index calculated column with dax.
group index =
RANKX (
FILTER ( 'Table', EARLIER ( 'Table'[ID] ) = 'Table'[ID] ),
'Table'[Index],
,
ASC
)
3. Create the measure with the formula below.
Measure =
CALCULATE (
SUM ( 'Table'[STATUS_] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[ID] ),
'Table'[group index] <= MAX ( 'Table'[group index] )
)
)
Here is the output.
If you still need help, free to ask.
Best Regards,
Cherry
Hello @Anonymous
Try this function:
Hi @Anonymous ,
Thanks a lot for so fast answer.
It didn't work.
The TOTAL column has the same value to all rows.
Regards.
sorry brother, i had understood that u need the last value accumulated, but i need a function to sum each value through status =/
Relax and thanks for the attempt.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 23 | |
| 19 |