This content has been marked as final.
Show 2 replies
-
1. Re: Is it possible to set validation on a form field with data from another field in Adobe Acrobat?
try67 Apr 8, 2013 7:04 AM (in response to lmphil)You'll need to use a script to do it. Something like this should do:
if (event.value) {
event.rc = true;
var v1 = +this.getField("NameOfOtherField").value;
if (+event.value!=(v1*0.25)) {
app.alert("The value you entered must be 25% of the value of NameOfOtherField.");
event.rc = false;
}
}
(This will check if the entered value is exactly 25% of the other value... If you meant something else, please clarify)
-
2. Re: Is it possible to set validation on a form field with data from another field in Adobe Acrobat?
lmphil Apr 8, 2013 7:16 AM (in response to try67)THANK YOU!! THANK YOU!! THANK YOU!! That is exactly what I needed and it works beautifully!


