Forum Discussion
Cumulative Sales by Customer using Play Axis
- 5 years ago
Anonymous , I think you have to use an independent date table for the slicer on which play axis will run
Example
Cumulative Invoiced for PLAY =
var _max = MAXX(allselceted(Date2) , Date2[Date])
return
CALCULATE(
[Total Revenue $$$ (CAD)],
DATESBETWEEN(
CalendarDate[Date],
MIN(CalendarDate[Date]),
MAX(CalendarDate[Date])
) , CalendarDate[Date] <=_max
)Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI
Anonymous , I think you have to use an independent date table for the slicer on which play axis will run
Example
Cumulative Invoiced for PLAY =
var _max = MAXX(allselceted(Date2) , Date2[Date])
return
CALCULATE(
[Total Revenue $$$ (CAD)],
DATESBETWEEN(
CalendarDate[Date],
MIN(CalendarDate[Date]),
MAX(CalendarDate[Date])
) , CalendarDate[Date] <=_max
)
Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI