AND (PEL)

This operator performs a logical conjunction on two logical expressions.

Logical_Expression1 AND 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 both parameters evaluate to TRUE; otherwise, FALSE.

Remarks

The following table illustrates how the AND operator performs the logical conjunction.

Logical_Expression1 Logical_Expression2 Return Value

TRUE

TRUE

TRUE

TRUE

FALSE

FALSE

FALSE

TRUE

FALSE

FALSE

FALSE

FALSE

See Also

Other Resources

PEL operators