Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |