Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
PeterSimonsen87
Frequent Visitor

Counting products based on cumulative sales percentage measures

Hi all,


I'm having trouble with how to make aggregations on a cumulative sales percentage measures in other measure.


I've made a measure ('cumulative_percentage') that shows the cumulative percetage for sales of each product. When I add it to a table with the Product variable it shows what I need.

 

It looks like this:

 

 

cumulative_percentage =


VAR CurrentProduct = SUM(financials[ Sales])

VAR SummarizedTable = SUMMARIZE(
ALLSELECTED(financials),
financials[Product],
"product_sales", SUM(financials[ Sales])
)
VAR CumulativeSum = SUMX(
FILTER(SummarizedTable,[product_sales] >= CurrentProduct), [product_sales]
)


VAR TotalSelectedProducts = CALCULATE(SUM(financials[ Sales]), ALLSELECTED(financials))

VAR cumulative_percentage =
DIVIDE(
CumulativeSum,
TotalSelectedProducts,
0
) * 100

Return(cumulative_percentage)

 

 


But I need to make a Card visual that shows me the number of Products where the corresponding cumulative percentage is above 50% in the current filter context.

PeterSimonsen87_0-1678892777809.png


I have tried a bunch of different things, and I keep running my head into a wall. It needs to be subject to filters, so it needs to be done in measures.


THIS article looks like the right sort of thing, and I've tried to implement it, but as far as I could tell it references a ranking column, which I don't have and have been unable to make on the fly within measure.


Any help would be greatly appreciated ‌‌🙏

 

MWE available at https://ufile.io/hb05wj7j‌‌

1 ACCEPTED SOLUTION
JW_van_Holst
Resolver IV
Resolver IV

I build this solution on the Adventure Works DW 2020. I hope it will help.

#prod =
VAR _tableWithSales =
    ADDCOLUMNS (
        ALLSELECTED ( 'Product'[Product] ),
        "@sales", [Total Sales Amount]
    )
VAR _tableWithCum =
    ADDCOLUMNS (
        _tableWithSales,
        "@**bleep**",
            VAR _current = [@sales]
            RETURN
                DIVIDE (
                    SUMX ( FILTER ( _tableWithSales, [@sales] <= _current ), [@sales] ),
                    SUMX ( _tableWithSales, [@sales] )
                )
    )
RETURN
    COUNTROWS ( FILTER ( _tableWithCum, [@**bleep**] > 0.5 ) )

 

 

View solution in original post

2 REPLIES 2
PeterSimonsen87
Frequent Visitor

Thank you so much, JW! Works like a charm 🙂

 
JW_van_Holst
Resolver IV
Resolver IV

I build this solution on the Adventure Works DW 2020. I hope it will help.

#prod =
VAR _tableWithSales =
    ADDCOLUMNS (
        ALLSELECTED ( 'Product'[Product] ),
        "@sales", [Total Sales Amount]
    )
VAR _tableWithCum =
    ADDCOLUMNS (
        _tableWithSales,
        "@**bleep**",
            VAR _current = [@sales]
            RETURN
                DIVIDE (
                    SUMX ( FILTER ( _tableWithSales, [@sales] <= _current ), [@sales] ),
                    SUMX ( _tableWithSales, [@sales] )
                )
    )
RETURN
    COUNTROWS ( FILTER ( _tableWithCum, [@**bleep**] > 0.5 ) )

 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.