Versions Compared

Key

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

...

Symbol
Logical Operations
Example
||OrIF(VoyageStatus=="Completed" || VoyageStatus=="Closed", ..., ...)
>=Greater Than or Equal ToIF(CommenceDate >= TODAY(), ..., ...)
>Greater ThanIF(CommenceDate > TODAY(), ..., ...)
==EqualityIF(VoyageStatus=="Commenced", ..., ...)
<=Less Than or Equal ToIF(CommenceDate <= TODAY(), ..., ...)
<Less ThanIF(CommenceDate < TODAY(), ..., ...)
&&AndIF(VoyageStatus=="Commenced" && CommenceDate > TODAY(), ..., ...)
!=InequalityIF(VoyageStatus!="Closed", ..., ...)
""BlankIF(VoyageStatus!="", ..., ...)


Boolean operations can be strung together to make complex conditions using parentheses (); for example:

...