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

if then statement to set numeric value

New Here ,
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

Views

253

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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