Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I work in the events industry and want to analyse ticket sales over time but then compare these to the previous week.
We release our tickets for that weeks events on Monday Afternoon. The dataset coming into power bi is a transaction report for each ticket sale and gives a date and time for the sale.
I currently have a line chart showing ticket sales over time split by event but when I want to compare this weeks sales to last weeks theyre not overlaid on a line chart as the sales are a week later which leads to a chart like the below:
I want a way to see each weeks sales over time overlaid on top of each other.
Any assistance would be greatly appreciated!
You can also use a combination of a calendar table in DAX I've made with Selectedvalue.
Both are described in these 2 posts.
https://www.villezekeviking.com/dax-magic-with-selectedvalue/
https://www.villezekeviking.com/dax-tables-calendar-and-time/
What about adding a Sales Day column to your data that calculates the number of days since the first sale for that event. Then you can make the Sales Day the X axis on your chart and that would align events from different weeks together.
Sales Day =
VAR _SalesStart =
CALCULATE ( MIN ( 'YourTable'[Date] ), ALLEXCEPT ( 'YourTable', 'YourTable'[Event] ) )
RETURN
'YourTable'[Date] - _SalesStart + 1
You can see that the Sales Day goes from 1 - 5 for both events even though the first sales for that event was on differnet days.
You can see how they stack together with the Sales Day as the x axis. You could also have a date filter on the page to only look at events in a certain date range to filter it down.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
92 | |
87 | |
84 | |
65 | |
49 |
User | Count |
---|---|
140 | |
114 | |
110 | |
59 | |
59 |