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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 |
|---|---|
| 37 | |
| 32 | |
| 27 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 50 | |
| 31 | |
| 26 | |
| 22 |