Forum Discussion
EstherBR
10 months agoHelper III
Running total as a Tooltip
Hi, I have the following table: I have created the following line chart with the cumulative sum of sales: Running Total = CALCULATE( SUM(Sheet1[Sales]), FILTER( ALLSE...
- 10 months ago
Hi,
Please try something like below.
For this kind of semantic model, that has only one table, try using ALL DAX function.
Running Total = CALCULATE( SUM(Sheet1[Sales]), FILTER( ALL(Sheet1[Date]), Sheet1[Date] <= MAX(Sheet1[Date]) ) )
Jihwan_Kim
10 months agoSuper User
Hi,
Please try something like below.
For this kind of semantic model, that has only one table, try using ALL DAX function.
Running Total =
CALCULATE(
SUM(Sheet1[Sales]),
FILTER(
ALL(Sheet1[Date]),
Sheet1[Date] <= MAX(Sheet1[Date])
)
)
EstherBR
10 months agoHelper III
Thanks Jihwan_Kim !