and

3     1     Edited Sep 1, 2015

Returns true if all of the provided expressions are true, otherwise false.

Usage

x ← and(boolean_expression1, boolean_expression2, ..., boolean_expressionN)  

or

x ← boolean_exression1 and boolean_expression2  


Examples

and(country==1, segment==2)
and(country==1, segment==2, gender==1)
and(country==1, (segment==2 or segment==3))

country==1 and segment==2
country==1 and segment==2 and gender==1


See Also

Equivalency, or


Comments

0

robsmith Sep 1, 2015

test comment

Leave a Comment

Please sign in to leave a comment.