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

Divide every row with a measure

Hi !
I want to divide every row with a measure where the measure is filtered with a category and that category exixts in the same column where I want to execute the division.
My Measure:-

Base to calculate share = CALCULATE([Volume],Table[company_nm]="Full Industry")
Share = DIVIDE(SUM('Table'[Volume]),[Base to calculate share])

Now,
what I want:-
Capture.PNG
As, the measure contains the filter "Full Industry",it is just showing the first row !

I tried this measure in this dummy example it is working but not in my orginal example !
 
01 =
DIVIDE (
SUM('Table'[Volume]),
CALCULATE (
SUM('Table'[Volume]),
FILTER (
ALLEXCEPT ( 'Table','Table'[Category] ),
'Table'[Company Name] = "Full Industry"
)
)
)



Thanks in Advance !
1 ACCEPTED SOLUTION

Hi,

I am still not sure of that you need but this is what i can contribute from my understanding.  Let's forget the division for now.  Let's just try to get the denominator correct.  With the following filters applied (after exporting your data to an Excel file):

  1. Company = Full Industry
  2. Time period = 1 October 2020
  3. Cheannel name = HYPERMARKETS/SUPERMARKETS/DISCOUNTERS
  4. Country = United States
  5. Category = Category 2

the total of the volume column is 293228.9051.  With your filters remaining intact (as you can see in the image), this measure returns that value

Calculation 3 = CALCULATE(SUM(Sheet1[Volume]),Sheet1[Company]="Full Industry",Sheet1[Brand]="Category 2")
Hope this helps.
Untitled.png

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

11 REPLIES 11
souvik900766
Helper IV
Helper IV

Hi ! @amitchandak 
This measure of yours worked !
Category = divide([Volume],CALCULATE([Volume],Filter(allselected(Table),Table[company_nm]="Full Industry")))

But but ....
When I am trying to check out the Full Industry from Company Name column or Category A from brand Name column from the table the measure is vanishing.

@souvik900766 , becasue allselected need full industry to be one the selected value (Not removed by filter or slicer)

in that case all will do. Check all for both cases

Category = divide([Volume],CALCULATE([Volume],Filter(all(Table),Table[company_nm]="Full Industry")))

Hi ! @amitchandak 
Dont know what is happening !
I used your last measure:_
Category = divide([Volume],CALCULATE([Volume],Filter(all(Table),Table[company_nm]="Full Industry")))
In my Dummy example it is working but in my orginal file it is showing 0.00% !!!
Capture.PNG

@souvik900766 , Please the case or the excat value you need in double quotes i.e. Full Industry

 

I doubt that is creating a blank below. Value is not matching (space, Case etc )

 

Table[company_nm]="Full Industry"

Hi @amitchandak 
The case is right.I have checked that !
See this...The numbers are coming correspondingly same !Capture.PNG

@souvik900766 , is this value very big for- Table[company_nm]="Full Industry"

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Hi !
Kindly find the sample attached link

https://www.dropbox.com/s/nz0fnx87j6ktdjf/Help.pbix?dl=0 

Regards

Hi,

I am still not sure of that you need but this is what i can contribute from my understanding.  Let's forget the division for now.  Let's just try to get the denominator correct.  With the following filters applied (after exporting your data to an Excel file):

  1. Company = Full Industry
  2. Time period = 1 October 2020
  3. Cheannel name = HYPERMARKETS/SUPERMARKETS/DISCOUNTERS
  4. Country = United States
  5. Category = Category 2

the total of the volume column is 293228.9051.  With your filters remaining intact (as you can see in the image), this measure returns that value

Calculation 3 = CALCULATE(SUM(Sheet1[Volume]),Sheet1[Company]="Full Industry",Sheet1[Brand]="Category 2")
Hope this helps.
Untitled.png

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi !
Yes, the base or denominator is coming correct !
Now using the switch statement I made this dynamic !!!
Switch Category 1, CALCULATE(SUM(Sheet1[Volume]),Sheet1[Company]="Full Industry",Sheet1[Brand]="Category 1") !!!!
Category 2, CALCULATE(SUM(Sheet1[Volume]),Sheet1[Company]="Full Industry",Sheet1[Brand]="Category 2")
Thank You so much !!!!

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

@souvik900766 , You have try All or allselcted. Allexcept keep that filter

 

01 =
DIVIDE (
SUM('Table'[Volume]),
CALCULATE (
SUM('Table'[Volume]),
FILTER (
ALL ( 'Table','Table'[Category] ),
'Table'[Company Name] = "Full Industry"
)
)
)

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