Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Alice-Jen
Frequent Visitor

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.

AliceJen_2-1668778219022.png


For every selected parameter has different value range for color. For example , if selected parameter is phosphorus. The color range should like below.

AliceJen_0-1668777553683.png

If selected parameter is nitrigen.The color range should like below.

AliceJen_1-1668777692098.png

Is there anyone can help me to solve this question? 

 

2 REPLIES 2
amitchandak
Super User
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/...
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 

Parameters = {
    ("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 "
)
)
 
AliceJen_0-1669035441178.png

Thans in advance.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.