The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have a set of data with a a column of meeting dates each for a 'sale', I would like to make a chart visualizing this sale growing over time. (cumulative sum??)
Y axis total sale (count of the sale=, X axis meeting date
Please find a screenshot of my dataset
Thanks
Kristoffer
Solved! Go to Solution.
Try the "Running Total" Quick Measure and total it over date.
Hi @Kristofferaabo,
You could create the measure below to get the cumulative sum of the sales.
total = CALCULATE ( SUM ( table5[count of sales] ), FILTER ( ALL ( table5 ), 'table5'[Meeting date] <= MAX ( 'table5'[Meeting date] ) ) )
Then you will get your excepted line chart.
Best Regards,
Cherry
Hi @Kristofferaabo,
You could create the measure below to get the cumulative sum of the sales.
total = CALCULATE ( SUM ( table5[count of sales] ), FILTER ( ALL ( table5 ), 'table5'[Meeting date] <= MAX ( 'table5'[Meeting date] ) ) )
Then you will get your excepted line chart.
Best Regards,
Cherry
Would it be possible to add a grouping condition to that. Say I have a column category, then I would like the cummulative sum to be at a category level.
Try the "Running Total" Quick Measure and total it over date.
Really neat solution, thanks! 😎
Thanks a lot!! This was an easy solution that saved me a lot of time.
Thanks for the quick solution 🙂
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
78 | |
76 | |
41 | |
37 |
User | Count |
---|---|
157 | |
113 | |
64 | |
60 | |
55 |