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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Divide values from same column

Hello there,

 

I have this table:

NameStatusDate
JackKO02-02-2022
MaryKO02-02-2022
JackKO02-02-2022
DannyOK02-03-2022
MaryOK02-03-2022
DannyKO02-03-2022

 

And I'm trying to make a table visualization similar to this:

NameOKKOTotal% KO
Jack022100%
Mary11250%
Danny11250%

 

The problem is related to that % last column. Since the KO and OK values are within the same column, I don't know how to make the percentage of KO's out of the total count and add it to the visual. I'm sure there has to be a measure that can do it, but I can't figure it out. 

 

Thank you,

1 ACCEPTED SOLUTION
johncolley
Solution Sage
Solution Sage

Hi @Anonymous ,

 

You can achieve the end product table you are after with the following measures:

KO Count = CALCULATE(COUNT(Ko[Status]), Ko[Status] = "KO") + 0
OK Count = CALCULATE(COUNT(Ko[Status]), Ko[Status] = "OK") + 0
Total Count = Ko[KO Count] + Ko[OK Count]
Pct = Ko[KO Count]/ [Total Count] 

You'll need to format PCT as a %

 

Hope this helps.





View solution in original post

2 REPLIES 2
johncolley
Solution Sage
Solution Sage

Hi @Anonymous ,

 

You can achieve the end product table you are after with the following measures:

KO Count = CALCULATE(COUNT(Ko[Status]), Ko[Status] = "KO") + 0
OK Count = CALCULATE(COUNT(Ko[Status]), Ko[Status] = "OK") + 0
Total Count = Ko[KO Count] + Ko[OK Count]
Pct = Ko[KO Count]/ [Total Count] 

You'll need to format PCT as a %

 

Hope this helps.





Anonymous
Not applicable

Thank you so much, I can see now hoy obvious it was but I was unable to get it myself. Much appreciate!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors