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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
ziyabikram96
Helper V
Helper V

Running Addition Column

Hi,

I am trying to calculate a column where it adds the working days in a running form. On 15th March, total working days would be 2, and 3 on 16th March. I require a column, not a measure. I have tried various methods but they return total working days till the maximum date in the table, not till a date in the row.

How can it be solved?

Thanks alot

ziyabikram96_0-1615560753567.png

 

1 ACCEPTED SOLUTION
ErikHamoen
Resolver I
Resolver I

Please check this article:

https://community.powerbi.com/t5/Desktop/Cumulative-Total/td-p/43115 

 

Cumulative working days = 
CALCULATE (
    SUM ( 'Table'[Is WorkingDay] ),
    ALL ( 'Table' ),
    'Table'[Date] <= EARLIER ( 'Table'[Date] )
)

 

ErikHamoen_0-1615561430463.png

 

View solution in original post

1 REPLY 1
ErikHamoen
Resolver I
Resolver I

Please check this article:

https://community.powerbi.com/t5/Desktop/Cumulative-Total/td-p/43115 

 

Cumulative working days = 
CALCULATE (
    SUM ( 'Table'[Is WorkingDay] ),
    ALL ( 'Table' ),
    'Table'[Date] <= EARLIER ( 'Table'[Date] )
)

 

ErikHamoen_0-1615561430463.png

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.