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
conditional formating for percentages column in report
0 to 10 % amber color
10 to 100% Red color
<0% Green color
how to achieve this to get this format , please guide me i tried iam unable to get it
Solved! Go to Solution.
Hi @sunil222
You can try to create a measure to set the color then put it to conditional formatting.
e.g Sample data
Create a measure
Measure = SWITCH(TRUE(),SUM('Table'[value])>0&&SUM('Table'[value])<=0.1,"#c36625",SUM('Table'[value])>0.1&&SUM('Table'[value])<=1,"red",SUM('Table'[value])<0,"green")
Then put it to the conditional formatting of the value column.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @sunil222
You can try to create a measure to set the color then put it to conditional formatting.
e.g Sample data
Create a measure
Measure = SWITCH(TRUE(),SUM('Table'[value])>0&&SUM('Table'[value])<=0.1,"#c36625",SUM('Table'[value])>0.1&&SUM('Table'[value])<=1,"red",SUM('Table'[value])<0,"green")
Then put it to the conditional formatting of the value column.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 39 | |
| 34 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 122 | |
| 111 | |
| 83 | |
| 69 | |
| 68 |