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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Dear experts,
this is the visual I have created in power BI
and P7W4 is a measure
| SSL | Rank | Target Utilization | Lower Limit | Upper Limit |
| ITTS | Senior | 75% | 65% | 85% |
Solved! Go to Solution.
Hi @vjnvinod
Create a measure to return the color value .
Measure = Switch( True() ,
[P7W4] =BLANK(),"Grey",
[P7W4] <= SELECTEDVALUE('Table'[Lower Limit]) , "red" ,
[P7W4] > SELECTEDVALUE('Table'[Lower Limit]) , "Green" )
Then set conditional formatting for [P7W4] in table visual . Choose Field value for Format style , Measure for What field should we base this on .
The final result is as shown :
I have attached my pbix file , you can refer to it .
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @vjnvinod
Create a measure to return the color value .
Measure = Switch( True() ,
[P7W4] =BLANK(),"Grey",
[P7W4] <= SELECTEDVALUE('Table'[Lower Limit]) , "red" ,
[P7W4] > SELECTEDVALUE('Table'[Lower Limit]) , "Green" )
Then set conditional formatting for [P7W4] in table visual . Choose Field value for Format style , Measure for What field should we base this on .
The final result is as shown :
I have attached my pbix file , you can refer to it .
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
color measure =
Switch( True() ,
[P7W4] < [Lower] , "red" ,
[P7W4] > [Upper] , "Green" ,
"Grey"
)
@vjnvinod , That "n/a", might convert it to text
But you can create a measure like
Switch( True() ,
[P7W4] < [Lower] , "red" ,
[P7W4] > [Upper] , "Green" ,
"Yellow"
)
and you can use that in conditional formatting using field value option
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 60 | |
| 52 | |
| 47 | |
| 40 | |
| 38 |