Forum Discussion
Is it possible to do conditional formatting based on field parameter?
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?
2 Replies
- amitchandak
Super User
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/1682539
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pane-66e0afcb15f3- Alice-JenFrequent Visitor
Hi,
Thank you so much your solution. What does [SLA] mean?
I have field parametersParameters = {("Phosphorus", NAMEOF('Sheet1'[Average of Total fosfor ug/l]), 0),("Nitrigen", NAMEOF('Sheet1'[Average of Total kväve ug/l]), 1),("Oxygen_saturation", NAMEOF('Sheet1'[Average of Syremättnad %]), 2)}Should I add a measure under the table Parameters like below:Measure =Switch(true(),max(Parameters[Parameters]) = "Phosphorus" , Switch(true(),[SLA] >= 25 && [SLA] <= 50 , "Green" ,[SLA] > 50 && [SLA] <= 100, "Amber" ,"Red ") ,max(Parameters[Parameters]) = "Nitrigen" , Switch(true(),[SLA] >= 300 && [SLA] <= 625 , "Green" ,[SLA] > 625 && [SLA] <= 1200, "Amber" ,"Red "))Thans in advance.