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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
derickyy
Frequent Visitor

Cumulative Count and Empty Column

Hey everyone,

 

I was trying to build a rolling cumulative count column chart on PowerBI. And the count is weekly basis (each column represents the total number of rows in the table before that week). Because all the columns will be used as Filters,  I used 'ALLSELECTED' function.

 

Here is the problem: if I started to apply the filter and the cumulative count didn't change between two or more weeks, the column chart would show an empty column for those weeks. How can I fill in those empty columns with the same columns in the previous week? I'm not sure this is due to the default setting of PowerBI or my code 

derickyy_0-1606849208386.png

 

Here is my code:

CumCount = CALCULATE(COUNTA('Table'[ID]),FILTER(ALLSELECTED('Table'),'Table'[StartofWeek] <= MAX('Table'[StartofWeek])))

 

Thanks! 

 

2 REPLIES 2
V-pazhen-msft
Community Support
Community Support

@derickyy 

 

It looks doable but I am not sure about what leads to empty bar. Can you share the a sample of your current data?

 

Paul

edhans
Super User
Super User

If there is no data to include, you cannot in DAX. You need to add through Power Query or the source system values of 0 for the missing week.

 

If the weeks exist in your fact table but are blank or null in Power Query, replace with 0 before loading.

 

If you have a date table from Power Query, you could create an anti-join on your data table and date table, keeping only dates/weeks that don't exist in your data, then append it to the bottom of your table with $0 value.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors