Forum Discussion
Anonymous
4 years agoNot applicable
Running total
Hi all, I would like to add the values before February 21 to the running total. I've this running total measure: CALCULATE(SUM([id]), FILTER(ALLSELECTED('calendar'), 'calendar'[dateid]...
amitchandak
Super User
4 years agoAnonymous , I think you should use all
CALCULATE(SUM([id]),
FILTER(ALL('calendar'),
'calendar'[dateid] <= Max('alendar'[dateid])))