Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have seen posts that explain how to do ackumulated sum from a table column but I need to show ackumulated sum in a table but with a measure as base. Is this possible?
I have a measure that results in column B and now I want to create a measure that gives me column C if shown in a table like below.
Any ideas?
Thanks in advance!
Solved! Go to Solution.
Hi @JohannesM
Please try
Ackumulated =
SUMX (
FILTER ( ALLSELECTED ( 'Date'[Year] ), 'Date'[Year] <= MAX ( 'Date'[Year] ) ),
[Measure]
)
Hi @JohannesM
Please try
Ackumulated =
SUMX (
FILTER ( ALLSELECTED ( 'Date'[Year] ), 'Date'[Year] <= MAX ( 'Date'[Year] ) ),
[Measure]
)
Thanks!
Solved within an hour, like always. Man I love this forum 😃