XOR (PEL)

This operator performs a logical exclusion on two logical expressions.

Logical_Expression1 XOR 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

A Boolean value that returns TRUE if one and only one argument evaluates to TRUE; otherwise, FALSE.

Remarks

The following table illustrates how the XOR operator performs the logical exclusion.

Logical_Expression1 Logical_Expression2 Return Value

TRUE

TRUE

FALSE

TRUE

FALSE

TRUE

FALSE

TRUE

TRUE

FALSE

FALSE

FALSE

See Also

Other Resources

PEL operators