OR

Returns TRUE if at least one condition is true, and FALSE if all conditions are FALSE.

Parameter List

Syntax
OR(condition1
[condition2]
)
condition1

A conditional expression that can be coerced to a Boolean value. For example: 5>6.

[optional] condition2

Additional conditional expression that can be coerced to a Boolean value. For example: 5<6.

Examples

OR(1>5, 5<1) returns TRUE, as one of the parameters equates to TRUE.