Or Operator

Syntax

Expression Or Expression

See also: Operators, IF, True, False, And, Not, Xor

Summary

The Or operator returns True if either the left hand term or the right hand term are True.  Otherwise it returns False.

Examples

IF(2=3 Or 3=3, 10, 5) = 10
IF(True Or False, 10, 5) = 10
IF(False Or False, 10, 5) = 5