Or (operator)
Applies OR logic to two Boolean operands.
The result is True if either of the two operators is true.
Syntax
operand1 Or operand2
operand1 = first operand
operand2 = second operand
operand2 = second operand
Remarks
Returns #ERR! if the operands cannot be understood as Booleans.
Examples
True Or True = TrueTrue Or False = TrueFalse Or True = TrueFalse Or False = False