Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello there,
I have this table:
| Name | Status | Date |
| Jack | KO | 02-02-2022 |
| Mary | KO | 02-02-2022 |
| Jack | KO | 02-02-2022 |
| Danny | OK | 02-03-2022 |
| Mary | OK | 02-03-2022 |
| Danny | KO | 02-03-2022 |
And I'm trying to make a table visualization similar to this:
| Name | OK | KO | Total | % KO |
| Jack | 0 | 2 | 2 | 100% |
| Mary | 1 | 1 | 2 | 50% |
| Danny | 1 | 1 | 2 | 50% |
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,
Solved! Go to Solution.
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.
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.
Thank you so much, I can see now hoy obvious it was but I was unable to get it myself. Much appreciate!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |