Copy link to clipboard
Copied
Hi all,
I apologise if this has been asked but I can't find it under any of my searches.
I am using Abobe Acrobat Pro DC. I have created a fillable PDF form and I have a field that I have set the format to Number, 0 decimal places, and currency value to $.
What I am looking for is to only allow a number between 1 and 25,000. Any number over 25,000 will not be allowed.
I am assuming that this would be some kind of script. I don't want character limits, it needs to be based on value.
Thanks in advance.
Paul
Copy link to clipboard
Copied
You don't need a script. Go to the field's Properties, and under the Validate tab enter the following:
Copy link to clipboard
Copied
You don't need a script. Go to the field's Properties, and under the Validate tab enter the following:
Copy link to clipboard
Copied
Thanks Try67. Muchly appreciated.
Copy link to clipboard
Copied
That is awesome, but what if I wanted to automatically change it back to the highest allowed limit. For example, this field is interest rate + 3. It cannot however go over 18%
Copy link to clipboard
Copied
For that you would need a script. Something like this:
if (event.value>0.18) event.value = 0.18;
Copy link to clipboard
Copied
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more