Answered
interactive PDFs with boolean operations
If an inputted number is outside of a specific range, I would like the word "fail" to appear in another field otherwise the word "pass" should populate that field
If an inputted number is outside of a specific range, I would like the word "fail" to appear in another field otherwise the word "pass" should populate that field
Put a custom validation script on the field that needs to be tested. Something like this:
var nMin = 3, nMax = 10;
if((event.value > nMin) && (event.value < nMax))
this.getField("FieldStatus").value = "Pass";
else
this.getField("FieldStatus").value = "Fail";
Replace "FieldStatus" with the name of the field where the status text will be displayed
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.