Expand my Community achievements bar.

My speed if/then statement not working

Avatar

Level 3

Hi,

I have a table:

1430062_pastedImage_3.png

I currently have the following script in "change"

if (Biker > Sales) {

this.rawValue = Accept;

}

else

this.rawValue == Reject ;

}

Thank you in advance for any help.

6 Replies

Avatar

Level 4

Is this a LiveCycle Designer form?

Avatar

Level 7

Are "Acceopt" and "Reject" variable names or string values?

If string values, you need to place quotation marks around the words.

Avatar

Level 7

Are you using FormCalc or Javascript?

Javascript will need .rawValue (unless it is a variable name you have there).

Formcalc doesnt need semicolons at the end or rawValue.

Avatar

Level 7

Try this:

if (Biker.rawValue >= Sales.rawValue) { //this assumes that your field name is Biker and Sales

                                                              // you said greater than or equal to so us >=

this.rawValue = "Accept";                    // I assume you mean if Biker is greater than or equal to then                                                              // the customer field is to say Accept otherwise reject.

}

else

this.rawValue = "Reject" ;

}