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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss 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.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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