Hi,
An if/else statement would work. The following is in JavaScript in the calculate event of the TextField:
if (NumericField.rawValue == 100) {
this.rawValue = "Low";
}
else if (NumericField.rawValue == 200) {
this.rawValue = "Medium";
}
else if (NumericField.rawValue == 300) {
this.rawValue = "High";
}
else {
this.rawValue = "";
}
Hope that helps,
Niall