Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

if then statement to set numeric value

New Here ,
Jun 13, 2018 Jun 13, 2018

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
380
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 14, 2018 Jun 14, 2018
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines