Hi @jaanihsm
Try this formula in dropdown Fill Property:
If(
Dropdown1.Selected.Value = "1", // Change this condition based on your dropdown values
Color.Red,
Dropdown1.Selected.Value = "2",
Color.Yellow,
Color.Green
)
You can use "Switch" function instead of "If"
Switch(
Dropdown1.Selected.Value,
"1", Color.Red,
"2", Color.Yellow,
Color.Green
)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.