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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Calculating % per category of total

Hi all,

 

I have been searching and tried quite a few things but I cannot get this to work. I am trying to figure out how I can make calculation where I can have a value of a filtered row showing as a % of a total. My data looks like this:

 

Customer         Value        OK/NOT         
A100OK
A100NOT
B200NOT
B200NOT
C300OK
C300OK

 

I would need to summarize this per client, showing "How many % does Client X NOT's consist of based on the total value of NOTs". So it should look like this:

 

Customer           Total value       Total value of NOT       % NOT of the total value of NOT        
A20010020%
B40040080%
C60000%
Total1200500100%

 

It's mainly the last column I cannot manage to get into a matrix, because everytime I try it will just divide it on customer level, not based on the total SUM of "Total value of NOT". 

 

Thanks in advance. 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,

 

Measure for 3rd column

divide(calculate(sum(Table[Value]), filter(Table, Table[OK/NOT] = "NOT")),calculate(sum(Table[Value])))

 

 

Measure for 4th  column

divide(calculate(sum(Table[Value]), filter(Table, Table[OK/NOT] = "NOT")),calculate(sum(Table[Value]), filter(allselected(Table), Table[OK/NOT] = "NOT")))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous ,

 

Measure for 3rd column

divide(calculate(sum(Table[Value]), filter(Table, Table[OK/NOT] = "NOT")),calculate(sum(Table[Value])))

 

 

Measure for 4th  column

divide(calculate(sum(Table[Value]), filter(Table, Table[OK/NOT] = "NOT")),calculate(sum(Table[Value]), filter(allselected(Table), Table[OK/NOT] = "NOT")))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thank you, works great!

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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