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

Remarks

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

Examples

True Or True = True
True Or False = True
False Or True = True
False Or False = False

Classification

Logic