Avatar

Level 2

I have a numeric field that calculates

a total.  I have a text field that I want to look at the nume

ric field and based on what the

number field says enter text.

This is what I have for my calc right now...its not working...I don't know if it should be formcalc or java

if

(TextField2.rawValue == 16 or 17 or 18 or 19 or 20 or 21 or 22 or 23 or 24 or 25)

{

this.rawValue

= "Low Risk"

}

else

(TextField2.rawValue == 26 or 27 or 28 or 29 or 30 or 31 or 32 or 33)

{

this.rawValue

= "Moderate Risk"

}

else

(TextField2.rawValue == 34 or 35 or 36 or 37 or 38 or 39 or 40 or 41 or 42)

{

this.rawValue

= "High Risk"

}