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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Columns for Cumulative balances

Hey there

 

I have a table set below for Date, Company, In.

 

May I know how can I create 2 columns that:

- calculates cumulative balances of "In" but only for individual company A, B & C

- calculates cumulative balances of "In" but for all companies

 

DateCompanyInCumu Bal by CompanyCumu Bal by Combined
2-JanA118
3-JanA1211
     
2-JanB118
3-JanB2311
4-JanB3614
     
2-JanC228
2-JanC468
1 ACCEPTED SOLUTION
LivioLanzo
Solution Sage
Solution Sage

@Anonymous

 

 

you  need to build this model and then add these measures:

 

 

 

 

2019-02-01_15-24-53.jpg2019-02-01_15-24-38.jpg

 

 

Cumu Bal by Combined

 

=IF (
    MIN ( 'Calendar'[Date] ) <= CALCULATE (
            MAX ( Data[Date] ),
            ALL ( 'Calendar' )
        ),
    CALCULATE (
        SUM ( Data[In] ),
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
        ),
        ALL ( Companies )
    )
)

Cumu Bal by Company

 

=IF (
    MIN ( 'Calendar'[Date] ) <= CALCULATE (
            MAX ( Data[Date] ),
            ALL ( 'Calendar' )
        ),
    CALCULATE (
        SUM ( Data[In] ),
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
        )
    )
)

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

View solution in original post

1 REPLY 1
LivioLanzo
Solution Sage
Solution Sage

@Anonymous

 

 

you  need to build this model and then add these measures:

 

 

 

 

2019-02-01_15-24-53.jpg2019-02-01_15-24-38.jpg

 

 

Cumu Bal by Combined

 

=IF (
    MIN ( 'Calendar'[Date] ) <= CALCULATE (
            MAX ( Data[Date] ),
            ALL ( 'Calendar' )
        ),
    CALCULATE (
        SUM ( Data[In] ),
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
        ),
        ALL ( Companies )
    )
)

Cumu Bal by Company

 

=IF (
    MIN ( 'Calendar'[Date] ) <= CALCULATE (
            MAX ( Data[Date] ),
            ALL ( 'Calendar' )
        ),
    CALCULATE (
        SUM ( Data[In] ),
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
        )
    )
)

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.