List of Logical Statements
The following are logical statements that can be used within the expressions of iif parameters:
.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 (!)
Add Comment