Forum Discussion
Applicable88
4 years agoImpactful Individual
Running 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
4 years agoCommunity Champion
Applicable88 Yes:
Measure =
VAR __Date = MAX('Table'[Date])
RETURN
SUMX(FILTER(ALL('Table',[Date] <= __Date),[Sales])