Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi All,
I want to create conditional formatting using Icons based on the percentage measure created, below are the conditions which i want to use in Matrix table
But i am unable to use last condition i.e <75% to >125% getting below error
Can you please assist me how to fix the below issue.
Thank for your help in advance.
Regards,
Solved! Go to Solution.
Hi @harirao
Thanks for reaching out to us.
In your screenshot, logic used is and, not or.
please try this measure,
Measure =
var _value= MIN('Table'[Attainment])
return SWITCH(TRUE(),
_value>0.75 && _value<0.85,"yellow",
_value>0.85 && _value<1.15,"green",
_value>1.15 && _value<1.25,"yellow",
_value<0.75 || _value>1.25,"red")
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @harirao
Thanks for reaching out to us.
In your screenshot, logic used is and, not or.
please try this measure,
Measure =
var _value= MIN('Table'[Attainment])
return SWITCH(TRUE(),
_value>0.75 && _value<0.85,"yellow",
_value>0.85 && _value<1.15,"green",
_value>1.15 && _value<1.25,"yellow",
_value<0.75 || _value>1.25,"red")
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-xiaotang
Please note i am getting below error, also wanted to know is not possible to use Condition formatting "ICON's"
Thank you
Hi @harirao,
The logic doesn't make sense. How can a percent be less than 75% but be greater than 125%? Is the 125% supposed to be -125%?
Proud to be a Super User!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |