Forum Discussion
miikasa
2 years agoFrequent Visitor
Accumulated Values in a bar chart
Hi guys, I have this measure which is linked to a calendar table: SalesIndex = DIVIDE( [SalesAmount], [AverageCurrentMonthPreviousMonth], 0 ) Calendar = CALENDAR(DAT...
- 2 years ago
Hi miikasa
Could you try:
Running total =
Calculate(
[SalesIndex], Calendar[Date] <= Max(Calendar[Date]) --Filter to less than the current max
, Year(Calendar[Date]) = Year(Max(Calendar[Date])) --keep in the same year
)
SamWiseOwl
Super User
2 years agoHi miikasa
Could you try:
Running total =
Calculate(
[SalesIndex]
, Calendar[Date] <= Max(Calendar[Date]) --Filter to less than the current max
, Year(Calendar[Date]) = Year(Max(Calendar[Date])) --keep in the same year
)
miikasa
2 years agoFrequent Visitor