The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi All,
Below is my data sample
I want to have result like this
I use this formula that the accumulation didn't work
Any support on this, highly appriciated.
Solved! Go to Solution.
Hi @Torbuzz ,
If you want to get result as your question, I think you need to sort your table by [Date] and [Name].
Measure:
GrandTotal = CALCULATE(SUM('Table'[In]) - SUM('Table'[Out]))
SisaStok =
VAR _Step1 =
SUMMARIZE (
ALLSELECTED ( 'Table' ),
'Table'[Index],
Kalender[Year],
Kalender[MonthSort],
'Table'[Name],
"GrandTotal", [GrandTotal],
"Group",
MAXX (
FILTER (
ALLSELECTED ( 'Table' ),
[GrandTotal] < 0
&& 'Table'[Index] < EARLIER ( 'Table'[Index] )
),
'Table'[Index]
)
)
VAR _Step2 =
ADDCOLUMNS (
_Step1,
"RunningTotal",
IF (
[GrandTotal] < 0,
0,
SUMX (
FILTER (
_Step1,
[Group] = EARLIER ( [Group] )
&& 'Table'[Index] <= EARLIER ( 'Table'[Index] )
),
[GrandTotal]
)
)
)
RETURN
SUMX ( FILTER ( _Step2, [Index] IN VALUES ( 'Table'[Index] ) ), [RunningTotal] )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Now I change the formula to be like this :
What should I do?
Hi @Torbuzz ,
If you want to get result as your question, I think you need to sort your table by [Date] and [Name].
Measure:
GrandTotal = CALCULATE(SUM('Table'[In]) - SUM('Table'[Out]))
SisaStok =
VAR _Step1 =
SUMMARIZE (
ALLSELECTED ( 'Table' ),
'Table'[Index],
Kalender[Year],
Kalender[MonthSort],
'Table'[Name],
"GrandTotal", [GrandTotal],
"Group",
MAXX (
FILTER (
ALLSELECTED ( 'Table' ),
[GrandTotal] < 0
&& 'Table'[Index] < EARLIER ( 'Table'[Index] )
),
'Table'[Index]
)
)
VAR _Step2 =
ADDCOLUMNS (
_Step1,
"RunningTotal",
IF (
[GrandTotal] < 0,
0,
SUMX (
FILTER (
_Step1,
[Group] = EARLIER ( [Group] )
&& 'Table'[Index] <= EARLIER ( 'Table'[Index] )
),
[GrandTotal]
)
)
)
RETURN
SUMX ( FILTER ( _Step2, [Index] IN VALUES ( 'Table'[Index] ) ), [RunningTotal] )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
80 | |
79 | |
44 | |
38 |
User | Count |
---|---|
157 | |
113 | |
64 | |
60 | |
55 |