Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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:
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |