Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

DAX Help with complex Cumulative sum

I have a table with main fields Week, Type and Value.

Week is just a "WK ##"
Type is "Inbound" or "Demand" (basically In/Out)
Value is the number 


I need cummulative value but crucially considers if the value is inbound or outbound. 

I also need it as a measure, so I can choose different categories from the table too.

 

Really hoping someone can help, this is too much for my head at the min.

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous ,

     

    Based on your description, you can do some steps as follows. Here is my test table.

     

    1. Create a calculated column.

    Weeknum = VALUE(RIGHT([Week],2))

    2. Create a measure.

    Measure =
    SUMX (
        FILTER (
            ALL ( 'Sheet1' ),
            [Type] = SELECTEDVALUE ( Sheet1[Type] )
                && [Weeknum] <= SELECTEDVALUE ( 'Sheet1'[Weeknum] )
        ),
        [Value]
    )
    

    Result:

    Hope that's what you were looking for.

    Best Regards,

    Yuna

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

2 Replies

  • Hi, Anonymous 

     

    Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

     

    All measures are in the sample pbix file, and steps are numbered in front of each measure.

     

     

    https://www.dropbox.com/s/jx2hichjims0pw6/jbai.pbix?dl=0 

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: https://www.linkedin.com/in/jihwankim1975/

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

     

    Based on your description, you can do some steps as follows. Here is my test table.

     

    1. Create a calculated column.

    Weeknum = VALUE(RIGHT([Week],2))

    2. Create a measure.

    Measure =
    SUMX (
        FILTER (
            ALL ( 'Sheet1' ),
            [Type] = SELECTEDVALUE ( Sheet1[Type] )
                && [Weeknum] <= SELECTEDVALUE ( 'Sheet1'[Weeknum] )
        ),
        [Value]
    )
    

    Result:

    Hope that's what you were looking for.

    Best Regards,

    Yuna

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.