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
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
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.