Hello Team,
I have a gallery formatted grid created, for the status field ..based on the value selected the color gets changed with fill property. When the Status -Draft --it's Blue --working but when I select the status -in progress -the color should be yellow-green .. it is not working out.
On Fill property - used Switch Statement
Switch(true,ThisItem.Status.Value ="Draft",Blue,ThisItem.Status.Value="In progess" ,YellowGreen,ThisItem.Status.Value="Hold" ,Gray,ThisItem.Status.Value ="Closed" ,Red)
Alternative tried--
Switch(ThisItem.Status.Value ,"Draft",Yellow,"In-progess" ,Green,"Hold" ,Gray,"Closed" ,Red)

Similarly, I tried for Text Property --Using emojis
Switch(ThisItem.Status.Value ,"Draft","🔵", "In-Progress","🟢","Closed" ,"🔴") & " " &ThisItem.Status.Value
Any help is very much appreciated.
Thanks a lot.