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
RK91
Frequent Visitor

cumulative sum

Hi,

 

I'm looking to create a measure that sums up the total YTD "comparison" per supplier, material and category.

so far I got it to work on supplier level but from material level up results are off.

link to PBIX: https://we.tl/t-LzZmHP4ldl

 

expected results:

  • A category, A material, A for supplier = -14,72K (works)
  • A category B material, A for suppier = -26,05K (works)
  • A category, B material, B for supplier = 21,89K (works)
  • A category, B material A & B for suppier = -4,16
  • A category, A material & B material = -18,88K

 

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi @RK91  , 

 

You could create a measure by the following formula:

cumulative2 =
VAR _A =
    CALCULATE ( [cumulative], 'Material'[Supplier] = " A" )
VAR _B =
    CALCULATE ( [cumulative], 'Material'[Supplier] = " B" )
VAR _COUNT =
    DISTINCTCOUNT ( 'Material'[Supplier] )
RETURN
    IF (
        _COUNT = 1
            && MAX ( [Supplier] ) = " A",
        _A,
        IF ( _COUNT = 1 && MAX ( [Supplier] ) = " B", _B, _A + _B )
    )

The final output is shown below:

v-yalanwu-msft_2-1620727227700.png

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.  

hi @v-yalanwu-msft, thank you for reaching out. I thought I already replied but didn't - sorry.

 

Although it works on material level it doesn't give the expected result for the category. Also I have a lot more suppliers, materials and categories in my actual data and therfor I think it's not a sustainable solution in this case.

 

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.

Top Solution Authors