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, . . .)
  • exprN : a series of 2 or more bool expressions

    Returns

    bool

Notes

Function and returns true if all of the expressions passed return true and false otherwise.


© Incorta, Inc. All Rights Reserved.