Logic Editor – Operators

In conditions the left side of the condition is compared to the right side. The outcome will either be True or False based on the Operator used.

Available Operators for Variables and values that are numbers:

  • Operator

    Description

  • EQ

    =

    Equals

    To be True, both sides of the operator have to be the same.
  • NE

    Not Equal

    To be True, both sides of the operator have to be different.
  • LT

    <

    Less Than

    To be true, left side of the operator has to be less than the right side.
  • LTE

    Less Than or Equal

    To be true, left side of the operator has to be less than or equal to the right side.
  • GT

    >

    Greater Than

    To be true, left side of the operator has to be greater than the right side.
  • GTE

    Greater Than or Equal

    To be true, left side of the operator has to be greater than or equal to the right side.