Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Running Total - Count Groups with Missing Values

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: 

 

OD_Data_Screenshot.PNG

What I ultimately want is a simple graph like this:

 

OD_aspiration_Screenshot.PNG

 

 

But using this formula:

 

OD_formula_Screenshot.PNG

 

I get this instead: In a matrix & a bar graph. 

 

OD_current_Screenshot.PNG

 

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:

  • Create a running count of rows
  • Where months that have missing data are still pulling the totals from prior months
  • And where each month is stacking / categorizing my values by group = division. 

 

Any help would be much appreciated!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@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.
1.JPG

Regards,
Lydia

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

@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.
1.JPG

Regards,
Lydia

Anonymous
Not applicable

how to stop the running sum on the last date? 

Thanks.

Anonymous
Not applicable

I have the same issue on how to stop the running sum on the last date of data. Is it possible ?

Anonymous
Not applicable

@Anonymous

 

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?

 

OD_line and bar.PNG

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors