Skip to main content
tooldar
Participant
June 14, 2018
Question

if then statement to set numeric value

  • June 14, 2018
  • 1 reply
  • 420 views

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

This topic has been closed for replies.

1 reply

BarlaeDC
Community Expert
Community Expert
June 14, 2018

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