Comparison not equal¶
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 not equal to the value of the right operand.
Sample¶
if ({Customer.Credit_Limit} <> {Customer.Purchases}) then
return 'not equal'
else
return 'equal'
end