And (operator)

Applies AND logic to two Boolean operands.
The result is True if both operands are true.

Syntax

operand1 And operand2
operand1 = the first operand
operand2 = the second operand

Remarks

Returns #ERR! if the operands cannot be understood as Booleans.

Examples

True And True = True
True And False = False
False And True = False
False And False = False

Classification

Logic