Forum Discussion
Kurt4597
3 years agoHelper I
Cumulative Total By Date
Hi all, Stuck on this issue - any help would be much appreciated DateDim Sales I am trying to create a measure that is a cumulative total of the sales and is able to be fi...
- Anonymous3 years ago
Hi Kurt4597 ,
You can modify Measure to the following form:
Measure = CALCULATE( SUM('Sales'[Sales]), FILTER(ALLSELECTED(DateDim), 'DateDim'[Date]<=MAX('DateDim'[Date])) )Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
3 years agoNot applicable
Hi Kurt4597 ,
You can modify Measure to the following form:
Measure =
CALCULATE(
SUM('Sales'[Sales]),
FILTER(ALLSELECTED(DateDim),
'DateDim'[Date]<=MAX('DateDim'[Date]))
)
Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly