Avatar

Correct answer by
Level 10

Hi,

I'm guessing you are already using a calculate event, so you should be able to highlight the field in that script, something like;

var result = NumericField1.rawValue + NumericField2.rawValue;

if (result > 300)

{

    this.fillColor = "255,0,0";

}

result;

Just remember that the result of the calculate script is the last value evaluated.

Regards

Bruce

View solution in original post