Help Files
Operators

Arithmetic operators

Add

"/GCL[0]" + "/GCL[1]"
"/GCL[0]" + 10

Subtract

 "/GCL[0]" - "/GCL[1]"

Multiply

"/GCL[0]"  *  1.17

Divide

"/GCL[0]" / 2

Relational operators

Equal

"/GCL[0]"  =  90.2

Not equal

"/GCL[0]" <> "/GCL[1]"

Less than

"/GCL[0]" < 90

Less than or equal

"/GCL[0]" <= 88.5

Greater than

"/GCL[0]" > 80

Greater than or equal

"/GCL[0]" >= 82.3

Boolean operators

And

("/GCL[0]"  > 85) & ("/GCL[0]"  < 90)

Or

("/GCL[0]"  > 90) | ("/GCL[1]"  > 90)

Not

!("/GCL[0]"  > 85)