Forum Discussion
Anonymous
5 years agoNot applicable
Aggregating data across rows
littlemojopuppy
5 years agoCommunity Champion
You want to follow the running total DAX pattern. Your measure should look something like this...
CALCULATE(
SUM([Value]),
FILTER(
ALL(Calendar],
Calendar[Date] <= MAX(Calendar[Date])
)
)Anonymous
5 years agoNot applicable
Hi littlemojopuppy ,
Thanks for the reply. As you can see in my shared link to pbix file, the value shown are calculated using measure. The name of the measure is "sales ltm". So because of this I'm not able to use SUM() function as it does not take measure value.