This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi all,
I have a measure which states "Yes" or Blank in matrix values.
How can I hightlight any of the fields "Yes" as green?
Solved! Go to Solution.
Based on my test, you could refer to below steps:
Create three parameters:
Create a measure:
Measure = var V=CALCULATE(SUM('Table'[Value]))
return IF(V>R[R Value],"#FD625E",
IF(V>[A Value]&&V<R[R Value],"#F2C80F",
IF(V>G[G Value]&&V<R[R Value],"#01B8AA")))Using the conditional formatting with the above measure for your matrix:
Now you could change the parameters for your colored visual.
You could also download the pbix file to have a view.
Based on my test, you could refer to below steps:
Create three parameters:
Create a measure:
Measure = var V=CALCULATE(SUM('Table'[Value]))
return IF(V>R[R Value],"#FD625E",
IF(V>[A Value]&&V<R[R Value],"#F2C80F",
IF(V>G[G Value]&&V<R[R Value],"#01B8AA")))Using the conditional formatting with the above measure for your matrix:
Now you could change the parameters for your colored visual.
You could also download the pbix file to have a view.
There is conditional formatting option if you click the little dropdown on the measure in the Values area for the visual:
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 27 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 25 | |
| 24 |