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

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.

 

1 ACCEPTED SOLUTION
v-yuaj-msft
Community Support
Community Support

Hi @Anonymous ,

 

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

v-yuaj-msft_0-1618899187524.png

 

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:

v-yuaj-msft_1-1618899201279.png

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.

 

View solution in original post

2 REPLIES 2
v-yuaj-msft
Community Support
Community Support

Hi @Anonymous ,

 

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

v-yuaj-msft_0-1618899187524.png

 

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:

v-yuaj-msft_1-1618899201279.png

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.

 

Jihwan_Kim
Super User
Super User

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.

 

Picture2.png

 

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/

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


Go to My LinkedIn Page


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.