Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Logical Statements is used to specify a value based on a certain condition. It returns one specified value if the condition evaluates to true, and another specified value if it evaluates to false.

List of Logical Statements

The following are logical statements that can be used within the expressions of Guard parameters or "iif" functions.

.EQ. → Equal to (==)

.NE. → Not equal to (!=)

.LT. → Less than (<)

.LE. → Less than or equal to (<=)

.GT. → Greater than (>)

.GE. → Greater than or equal to (>=)

.AND. → AND (&&)

.OR. → OR (||)

.NOT. → NOT (!)