0
if then statement to set numeric value
New Here
,
/t5/acrobat-sdk-discussions/if-then-statement-to-set-numeric-value/td-p/9921996
Jun 13, 2018
Jun 13, 2018
Copy link to clipboard
Copied
I need a script for a .pdf form that if the value of another field is zero this field will be zero, if not the field will become the value of a third field.
i.e. if Q = 0 then P = 0 else P = U
TOPICS
Acrobat SDK and JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/if-then-statement-to-set-numeric-value/m-p/9921997#M21272
Jun 14, 2018
Jun 14, 2018
Copy link to clipboard
Copied
Hi,
var Q = this.getField("Q");
var P = this.getField("P");
var U = this.getField("U");
if ( Q.value === 0)
{
P.value = 0;
}
else
{
P.value = U.value;
}
I would put this in the validate or calculate section of the Q field, as that is the one that is actually controlling the code.
Help This helps
Malcolm
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more