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
operand2 = the second operand
Remarks
Returns #ERR! if the operands cannot be understood as Booleans.
Examples
True And True = TrueTrue And False = FalseFalse And True = FalseFalse And False = False