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
DeepDive
Helper IV
Helper IV

aat%Share Category share and sub-category and customer share

Hi All, I have category wise, sub category wise and customer wise data. Now I want to compare % share at levels.

My requirement is when it's category it compare the total but when it is subcategory or customer it compares to it's parent category only like below :

 

Cate.png

 

 

 

Link for sample excel file :

https://www.dropbox.com/scl/fi/d1hw2hlacsa7w0xs9bkfo/SalesPI.xlsx?dl=0&rlkey=gxqgwn6e790s0u4vipl3kr7...

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

Hi @DeepDive ,

 

I used part your data to create a sample .pbix file,see below:

Create a measure as below:

Share% = 
var _sharetotal=DIVIDE(CALCULATE(SUM('Sales'[Qty]),FILTER(ALL('Sales'),'Sales'[Category]=MAX('Sales'[Category]))),CALCULATE(SUM('Sales'[Qty]),ALL('Sales')))
var _sharesubtotal=DIVIDE(CALCULATE(SUM('Sales'[Qty])),CALCULATE(SUM('Sales'[Qty]),FILTER(ALL('Sales'),'Sales'[Category]=MAX('Sales'[Category]))))
Return
IF(ISINSCOPE('Sales'[Sub Category]),_sharesubtotal,IF(ISINSCOPE('Sales'[Category]),_sharetotal,BLANK()))

And you will see:

Annotation 2020-07-23 174427.png

For details,pls see attached.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

View solution in original post

5 REPLIES 5
v-kelly-msft
Community Support
Community Support

Hi @DeepDive ,

 

I used part your data to create a sample .pbix file,see below:

Create a measure as below:

Share% = 
var _sharetotal=DIVIDE(CALCULATE(SUM('Sales'[Qty]),FILTER(ALL('Sales'),'Sales'[Category]=MAX('Sales'[Category]))),CALCULATE(SUM('Sales'[Qty]),ALL('Sales')))
var _sharesubtotal=DIVIDE(CALCULATE(SUM('Sales'[Qty])),CALCULATE(SUM('Sales'[Qty]),FILTER(ALL('Sales'),'Sales'[Category]=MAX('Sales'[Category]))))
Return
IF(ISINSCOPE('Sales'[Sub Category]),_sharesubtotal,IF(ISINSCOPE('Sales'[Category]),_sharetotal,BLANK()))

And you will see:

Annotation 2020-07-23 174427.png

For details,pls see attached.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
amitchandak
Super User
Super User

@DeepDive , Try like

divide(calculate(Sum(Table[Total])),calculate(count(Table[Total]), allexcept(Table[Category])))

this dax not giving me correct figures.

Hi @amitchandak , I think there is some typo error in your dax ("Count"),

am using this below :

Measure = divide([Total],calculate([Total], allexcept('Product','Product'[Category])))
 
But at category, level it's giving me 100% , i want to compare category with total of category.

@DeepDive , Try like

Measure = divide([Total],calculate([Total], allexcept('Product','Product'[Category],'Product'[Sub Category]), allexcept('Customer','Customer'[Customer])))

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.