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
Trolleri
Helper I
Helper I

Calculate market share in category

Hello!

 

I have a table with with products and sales where the products are in different categories and have different manufacturers. 

 

I have a table visual where i can filter on manufacturer and see the sales but what i would like is to have the market share for all the products in their respective category despite the filtered manufacturer.

Right now if i select 3 categories and 1 manufacturer, the %share only shows the share for the total amount of the products listed in the visual.

So i would like to take (sales for that product) divided by the total sales in that products category no matter which categories are filtered and by all manufacturers no matter which manufacturer is filtered.

 

Im sure there is an easy way to do this but i cant figure it out right now..

 

1 ACCEPTED SOLUTION
TeigeGao
Solution Sage
Solution Sage

Hi @Trolleri ,

In your scenario, we can use ALL() to remove all filters to get the total sales amount, please refer to the following DAX query:

Measure = DIVIDE(SUM(Table1[Sales]),CALCULATE(SUM(Table1[Sales]),ALL(Table1)))

The result will like below:

PBIDesktop_1Pk75Ztipr.png

Best Regards,

Teige

View solution in original post

1 REPLY 1
TeigeGao
Solution Sage
Solution Sage

Hi @Trolleri ,

In your scenario, we can use ALL() to remove all filters to get the total sales amount, please refer to the following DAX query:

Measure = DIVIDE(SUM(Table1[Sales]),CALCULATE(SUM(Table1[Sales]),ALL(Table1)))

The result will like below:

PBIDesktop_1Pk75Ztipr.png

Best Regards,

Teige

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.