Versions Compared

Key

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

OR


This function 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 ...]

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