Forum Discussion
Anonymous
5 years agoNot applicable
Aggregating data across rows
littlemojopuppy
Community Champion
5 years agoYou 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])
)
)littlemojopuppy
Community Champion
5 years agoAnonymous so in place of the SUM([Value]) insert the name of the measure