March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I'm trying to create a running total for the number of open data sets our department has published by month, so that we can see how many data sets each division has published through any given month. There are months where only one division published an open data set, and months where no data sets were published at all. Here's my data:
What I ultimately want is a simple graph like this:
But using this formula:
I get this instead: In a matrix & a bar graph.
I think what I need is for the matrix values to fill in the prior value when there is no new data, instead of returning a blank. I can't for the life of me figure out how to do this.
So in summary, I'm looking to:
Any help would be much appreciated!
Solved! Go to Solution.
@Anonymous,
Firstly, create a date table in Power BI Desktop following the guide in this blog.
Secondly, create relationship using date field of the date table and pub_date field of Open Data table.
Thirdly, create measure using DAX below.
Running OD = CALCULATE(COUNT('Open Data'[ds_name]),FILTER(ALL('Date'),'Date'[DateKey]<=MAX('Date'[DateKey])))
At last, drag date field of date table to X-Axis of your chart.
Regards,
Lydia
@Anonymous,
Firstly, create a date table in Power BI Desktop following the guide in this blog.
Secondly, create relationship using date field of the date table and pub_date field of Open Data table.
Thirdly, create measure using DAX below.
Running OD = CALCULATE(COUNT('Open Data'[ds_name]),FILTER(ALL('Date'),'Date'[DateKey]<=MAX('Date'[DateKey])))
At last, drag date field of date table to X-Axis of your chart.
Regards,
Lydia
how to stop the running sum on the last date?
Thanks.
I have the same issue on how to stop the running sum on the last date of data. Is it possible ?
Your solution was so helpful! See below for the viz I was able to create. As you can see I've made a combination bar & line chart. I just have one more question:
How can I get the bars to stop appearing after today's date, while the line continues? I want to be able to see the goal into future months without seeing the actual progress made. Is there a way to apply the "Today()" function to the running total calculation, so that the calculation only shows the running total up to today's date, and doesn't project out into the future?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
128 | |
90 | |
75 | |
56 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |