OR (PEL)

This operator performs a logical disjunction on two logical expressions.

Logical_Expression1 OR Logical_Expression2

Operands

  • Logical_Expression1
    A valid PerformancePoint Expression Language (PEL) expression that returns a logical value.
  • Logical_Expression2
    A valid PEL expression that returns a logical value.

Return Value

Returns TRUE if either or both arguments evaluate to TRUE; otherwise, FALSE.

Remarks

The following table illustrates how the OR operator performs the logical disjunction.

Logical_Expression1 Logical_Expression2 Return Value

TRUE

TRUE

TRUE

TRUE

FALSE

TRUE

FALSE

TRUE

TRUE

FALSE

FALSE

FALSE

See Also

Other Resources

PEL operators