Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
We can use a field parameter to control visual properties. I created a gauge visual and want to fill color base on field parameter.
For every selected parameter has different value range for color. For example , if selected parameter is phosphorus. The color range should like below.
If selected parameter is nitrigen.The color range should like below.
Is there anyone can help me to solve this question?
@Alice-Jen , You will not gradient for that
exmaple color measure
Measure =
Switch(true(),
max(Table[status]) = "In production" , Switch(true(),
[SLA] = 1 , "Green" ,
[SLA] >= .5 , "Amber" ,
"Red "
) ,
max(Table[status]) = " Product completed" , Switch(true(),
[SLA] = 1 , "Green" ,
[SLA] >= .5 , "Amber" ,
"Red "
)
)
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...
Hi,
Thank you so much your solution. What does [SLA] mean?
I have field parameters
Thans in advance.