Forum Discussion
Applicable88
Impactful Individual
4 years agoRunning Total without calculate?
Hello, is there a way to compute running total without the calculate function? For example via creating a table variable inside a measure and sum it up via sumx? With this sample data: Date ...
- 4 years ago
Applicable88 Yes:
Measure = VAR __Date = MAX('Table'[Date]) RETURN SUMX(FILTER(ALL('Table',[Date] <= __Date),[Sales])
Greg_Deckler
Community Champion
4 years agoApplicable88 Yes:
Measure =
VAR __Date = MAX('Table'[Date])
RETURN
SUMX(FILTER(ALL('Table',[Date] <= __Date),[Sales])