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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
CmdrKeene
Helper IV
Helper IV

Help with Running Total

I've reviewed several posts and this seems mostly the same as Solved: Re: DAX Question: Running Totals with Missing Valu... - Microsoft Fabric Community, but I can't seem to understand the formula well enough to adapt it.

 

Basically I have a running total of orders in each hour. It's in a single table (query result) that groups the results per hour and some other dimensions (obfuscated here but we can just say order type).

 

This is the same data as Stacked Bar and as matrix for comparison.  

 

Notice the purple category (type 1) is present in hour 1 but missing from hours 2 and 3?  But then it appears again in 4.

 

I want the running total to repeat the same total if it is unchanged, so that the chart only grows.

 

Basically the way Excel pivot chart would do it.

 

I don't really want to use a calendar table because then I'll need a literal table of every hour and that seems weird.  Can I just modify the formula as Solved: Re: DAX Question: Running Totals with Missing Valu... - Microsoft Fabric Community did, perhaps by using unique order type from the same table?

 

CmdrKeene_0-1690312192149.png

 


CmdrKeene
1 REPLY 1
amitchandak
Super User
Super User

@CmdrKeene , have separate hour column and hour table and have measure like

 

Cumm Hour= CALCULATE(SUM(Sales[Amount]),filter(all('Hour'),'Hour'[Hour] <=max('Hour'[Hour])))

 

Cumm Based on Hour= CALCULATE(SUM(Sales[Amount]), Window(1,ABS,0,REL, ALL('Hour'[Hour]),ORDERBY('Hour'[Hour],ASC)))

 

or you try cumulative with window with partition by

Continue to explore Power BI Window function Rolling, Cumulative/Running Total, WTD, MTD, QTD, YTD, FYTD: https://youtu.be/nxc_IWl-tTc
https://medium.com/@amitchandak/power-bi-window-function-3d98a5b0e07f

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.