Forum Discussion
Anonymous
3 years agoNot applicable
Cumulative line chart
Hi. Hi. How do I make a cumulative line chart? I tried to do the "running totals" in quick measurement but it shows me a incorrect visual perhaps I used the wrong measurements. I would li...
mangaus1111
3 years agoSolution Sage
Hi Anonymous ,
try this measure
RT =
VAR CurrentDate= SELECTEDVALUE (Date[Date] )
RETURN
CALCULATE (
[Your Measure],
Date[Date]<= CurrentDate
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.