Answered
Auto Fill
I am creating a form and I want it to check a box of met or unmet depending on a text field entry. So if the text field is less than 5% I want the box of unmet to be checked. Any idea how I can make that happen.
I am creating a form and I want it to check a box of met or unmet depending on a text field entry. So if the text field is less than 5% I want the box of unmet to be checked. Any idea how I can make that happen.
Sorry should be greater than or equal to 5% for the Criterion3Met.
Use this code as the custom validation script of the percentage field:
this.getField("Criterion3Met").checkThisBox(0, (Number(event.value)>=5));
this.getField("Criterion3Unmet").checkThisBox(0, (Number(event.value)<5));Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.