Hi,Keep below script on the result text field on calculate event language Javascript.//Subtract items to get the value of the fieldvar result = Num.rawValue - (Sub.rawValue);if (result < 0) { this.border.fill.color.value = "231,179,173"; //Set the color to red if value is less than zero}else { ...