Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

How to create accumulate % for 8020 Table ?

Hi All Below my raw data :- https://www.dropbox.com/s/v2eypdrj51k4yvd/8020%20V001.pbix?dl=0 Expected result in yellow :-  
  • Icey's avatar
    5 years ago

    Hi Anonymous ,

     

    Try this:

     

    1. Add an index column in Power Query Editor.

     

    2. Create measures or columns.

    • Measures:
    ACC TOTAL Measure = 
    CALCULATE (
        SUM ( 'Table (2)'[SALES] ),
        FILTER (
            ALLSELECTED ( 'Table (2)' ),
            'Table (2)'[Index] <= MAX ( 'Table (2)'[Index] )
        )
    )
    
    ACC PER CENT Measure = 
    VAR Sum_ =
        CALCULATE ( SUM ( 'Table (2)'[SALES] ), ALLSELECTED ( 'Table (2)' ) )
    RETURN
        DIVIDE ( [ACC TOTAL Measure], Sum_, 0 )

    • Columns:
    ACC TOTAL Column = 
    CALCULATE (
        SUM ( 'Table (2)'[SALES] ),
        FILTER (
            ALLSELECTED ( 'Table (2)' ),
            'Table (2)'[Index] <= EARLIER( 'Table (2)'[Index] )
        )
    )
    ACC PER CENT Column = 
    VAR Sum_ =
        SUM ( 'Table (2)'[SALES] )
    RETURN
        DIVIDE ( [ACC TOTAL Column], Sum_, 0 )
    

     

     

    Best regards

    Icey

     

    If this post helps,then consider Accepting it as the solution to help other members find it faster.