Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I would like to apply Conditional Formatting to a matrix column, [Completion_Rate], based on the values of 2 other measures.
If [Completion_Rate] is less than Measure 1, Red
If [Completion_Rate] is between Measure 1 and Measure 2, Yellow
If [Completion_Rate] is greater than Measure 2, Green
Is this possible?
Solved! Go to Solution.
@TD21
Create a color measure like
Color Measure =switch(True(), [Completion_Rate] < [Measure 1], "Red",
[Completion_Rate] >= [Measure 1] && [Completion_Rate] <=[Measure 2], "Yellow",
[Completion_Rate] >=[Measure 2], "Green",
"black"
)
Use it under conditional formatting with "field" option
@TD21
Create a color measure like
Color Measure =switch(True(), [Completion_Rate] < [Measure 1], "Red",
[Completion_Rate] >= [Measure 1] && [Completion_Rate] <=[Measure 2], "Yellow",
[Completion_Rate] >=[Measure 2], "Green",
"black"
)
Use it under conditional formatting with "field" option
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 22 | |
| 21 | |
| 13 |
| User | Count |
|---|---|
| 66 | |
| 56 | |
| 45 | |
| 44 | |
| 30 |