Skip to content

Logical and

Description

Clicking this option inserts the "and" operator in the formula at the current cursor position. The result will be True if both operands are True.

Sample

if ({Customer.Credit_Limit} = 0 and {Customer.Purchases} = 0) then
    return 'credit limit and purchases are zero'
else
    return 'credit limit and purchases are NOT zero'
end