Skip to content

Comparison less than or equal to

Description

Clicking this option inserts the “<=” operator in the formula at the current cursor position. With this operator, you can compare two operands (numbers or strings) with each other, where the result is true when the value of the left operand is less than or equal to the value of the right operand.

Sample

if ({Customer.Credit_Limit} <= {Customer.Purchases}) then
    return drRed
else
    return drBlack
end