Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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,

  • 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.





2 Replies

  • 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's avatar
      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!