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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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