Versions Compared

Key

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

OR


Returns TRUE if at least one of its arguments evaluates to TRUE; it returns FALSE if none of the arguments evaluate to TRUE.


Syntax

Code Block
argument1 OR argument2 [OR ...]


Input

  • argument1 - The first boolean condition that you want to evaluate. argument2 - The first boolean condition that you want to evaluate. [OR …] - Additional boolean conditions that you want to evaluate.


Return type

  • boolean


Examples

ExpressionResultType
TRUE OR TRUE

TRUE

boolean
TRUE OR FALSETRUEboolean
FALSE OR FALSEFALSEboolean

TRUE OR ? (= UNKNOWN)

TRUEboolean
FALSE OR ? (= UNKNOWN)UNKNOWNboolean


Back to top