-
1. Re: Text field value based on numeric value of a number field
jnicholas330 Nov 22, 2014 9:18 AM (in response to AceBK)Your JavaScript syntax was incorrect. Use the validation syntax tool in the future to avoid this. Here is a corrected version.
if(TotalPoints > 234)
{
this.rawValue = "Exceeding Expectations";
}
if(TotalPoints > 179)
{
this.rawValue= "Meeting Expectations";
}
if(TotalPoints > 99)
{
this.rawValue= "Not Meeting Expectations";
}
-
2. Re: Text field value based on numeric value of a number field
AceBK Nov 24, 2014 6:37 AM (in response to jnicholas330)jnicholas,
Thank you for your response. I have made the change but my text box is still blank. I can't seem at attach a screen shot of my screen. Should this be under "Calculate" or should it be something else?
-
3. Re: Text field value based on numeric value of a number field
kvdvijaykumar Nov 24, 2014 9:19 PM (in response to AceBK)Hi AceBK,
Is it possible for you to mail the form @ kvdvijaykumar@gmail.com so that I can take a look?
Thanks,
VJ
-
4. Re: Text field value based on numeric value of a number field
AceBK Nov 25, 2014 6:18 AM (in response to kvdvijaykumar)I have played around with it and the only think I was missing was the ".rawValue" on the end of my field names. Once I added that, it worked.

