<= (less than or equal to) (PEL)

This operator performs a comparison operation that determines whether the value of one PerformancePoint Expression Language (PEL) expression is less than or equal to the value of another PEL numeric expression.

Numeric_Expression1 <= Numeric_Expression2

Operands

  • Numeric_Expression1
    A valid PEL numeric expression.
  • Numeric_Expression2
    A valid PEL numeric expression.

Return Value

A Boolean value based on the following conditions:

  • TRUE if both parameters are non-null, and the first parameter has a value that is either less than or equal to the value of the second parameter.

  • FALSE if both parameters are non-null, and the first parameter has a value that greater than the value of the second parameter.

  • NULL if either or both parameters evaluate to a null value.

See Also

Other Resources

PEL operators