Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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
OK, I have come to a complete wall with Power BI.
I do't "get" calculated columns.
Here's a data example:
Customer SLA SLA Result (FYI False means not breached)
ACME P1 False
ACME P3 False
ACME P4 True
ACME P4 False
ACME P3 True
ACME P4 False
ACME P1 False
ACME P3 False
ACME P4 True
Gadgets P4 False
Gadgets P3 True
Gadgets P4 False
Etc for several thousand rows.
Note that the SLA Result is ONE column, that is either true or false.
I can easily do a matrix that shows the % of row total but I want to:
a. Eliminate the %xxx.xx forced formatting
Conditionally format so that when a particualr companie's P1 is <80% False that is dispalyed in Red for each company, for each SLA!
So in my example above:
Customer SLA % not Breach
ACME P1 100 (Shouild be Green)
ACME P3 66 (should be red)
ACME P4 80 (should be red)
Gadgets P1 90 (Shouild be Green)
Gadgets P2 100 (Shouild be Green)
Gadgets P4 85 (Orange wouild be nice!
ANY HELP appreciated!
Solved! Go to Solution.
@Anonymous ,
Add measure below and take a look at Color formatting by field value.
Measure =
DIVIDE (
COUNTROWS ( FILTER ( Table1, Table1[SLA Result] = FALSE () ) ) + 0,
COUNTROWS ( Table1 )
) * 100
@Anonymous ,
Add measure below and take a look at Color formatting by field value.
Measure =
DIVIDE (
COUNTROWS ( FILTER ( Table1, Table1[SLA Result] = FALSE () ) ) + 0,
COUNTROWS ( Table1 )
) * 100
That's awesome,. thanks!
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 |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |