Avatar

Level 10

Hi,

You could add the script beneath the calculate script in the calculate event of the readOnly field.

//calculate script first then if statement for label
LabelSample.presence = "invisible";

if (this.rawValue == "4" || this.rawValue == "12")
{
     LabelSample.presence = "visible";
}

Hope that helps,

Niall