Forum Discussion
Cumulative Sales by Customer using Play Axis
Hi Everyone,
I posted a similar question a little while ago but never was able to get to a solution. I am looking to show cumulative sales by customer since January 1, 2018 on a bar chart using the play axis to see how the customers compare over time. I have a cumulative measure that shows the cumulative sales over that time and it is correct. That measure is,
calculate([Total Revenue $$$ (CAD)],
Filter(allselected(CalendarDate),
CalendarDate[Date]<=max(CalendarDate[Date])))
CALCULATE(
[Total Revenue $$$ (CAD)],
DATESBETWEEN(
CalendarDate[Date],
MIN(CalendarDate[Date]),
MAX(CalendarDate[Date])
)
)
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
4 Replies
- amitchandak
Super User
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
- AnonymousNot applicable
That worked wonderfully! Thank you.
For future viewers of this form, there is a typo in the DAX code proposed. It should say "ALLSELECTED".
Thanks again!
- AnonymousNot applicable
Could you please describe what did you exactly do here? I've been trying for about few days already but nothing seems to be working with Play Axis.
Please see the photo bellow. What I'm aiming to do here is to hit 'Play' Button and show title race in EPL 2022-23. Now you see number of points as of now. However, when I click play Axis it shows me number of points at one certain date, not cumulative number.
- AnonymousNot applicable
Also, please not that for the visual I'm using not Horizontal Bars but table, bars are coming from conditional formating as it was the only way to show teams icons.