Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have the following table with a accumulate value measure:
id_product | date | sells | value | _accumulate_value |
1 | 10/07/2022 | 5 | 10 | 10 |
1 | 09/07/2022 | 10 | 10 | 20 |
1 | 08/07/2022 | 6 | 10 | 30 |
1 | 07/07/2022 | 10 | 6 | 36 |
1 | 06/07/2022 | 0 | 0 | 36 |
1 | 05/07/2022 | 0 | 2 | 38 |
1 | 04/07/2022 | 8 | 10 | 48 |
1 | 03/07/2022 | 1 | 10 | 58 |
1 | 02/07/2022 | 6 | 10 | 68 |
1 | 01/07/2022 | 10 | 10 | 78 |
56 | 78 | 422 |
But the total for accumulate_value is returning wrong in power bi
How can i fix it to get the total sum 422 instead of 100?
Solved! Go to Solution.
You could create one more measure
Measure =
IF(
HASONEVALUE('Table'[date]),
[_accumulate_value],
SUMX(
VALUES('Table'[date]),
[_accumulate_value]
)
)
which gives you 422
You could create one more measure
Measure =
IF(
HASONEVALUE('Table'[date]),
[_accumulate_value],
SUMX(
VALUES('Table'[date]),
[_accumulate_value]
)
)
which gives you 422
Perfect! Thanks!
Hi,
Please try the below measures and the attached pbix file.
both of them should work.
_accumulate_value V2 =
SUMX (
VALUES ( 'Table'[date] ),
CALCULATE (
CALCULATE (
SUM ( 'Table'[value] ),
FILTER ( ALL ( 'Table'[date] ), 'Table'[date] >= MAX ( 'Table'[date] ) )
)
)
)
_accumulate_value =
SUMX (
VALUES ( 'Table'[date] ),
CALCULATE (
SUMX (
VALUES ( 'Table'[date] ),
CALCULATE (
SUM ( 'Table'[value] ),
FILTER ( ALL ( 'Table'[date] ), [date] >= MAX ( 'Table'[date] ) )
)
)
)
)
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.
@Andregewehr , use allselected
_accumulate_value =SUMX(VALUES('Table'[date]),
CALCULATE(sum('Table'[value]),FILTER(allselected ('Table'[date]),[date]>=MAX('Table'[date]))))
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
98 | |
98 | |
38 | |
37 |
User | Count |
---|---|
154 | |
120 | |
73 | |
73 | |
63 |