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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.