and
Returns true if the result of an AND operation on all of its arguments returns true.
Example
This example returns true if AMOUNT_SOLD IS 3696.48, COSTOFGOODS is 1670.79 and COUNTRY_NAME is “Argentina”
and(SALES.SALES.AMOUNT_SOLD=3696.48, SALES.SALES.COST_OF_GOODS=1670.79, SALES.COUNTRIES.COUNTRY_NAME="Argentina")
Syntax
and(bool expr1, bool expr2, . . .)
Notes
Function and
returns true if all of the expressions passed return true and false otherwise.