Expand my Community achievements bar.

if condition

Avatar

Level 7

if value of a numeric field is smaller than zero then I need the font colour to  became red.

Thank you

1 Reply

Avatar

Level 10

if (NumericField1.rawValue < 0){

     NumericField1.font.fill.color.value = "255,0,6";

}