OR

Description

Returns True if at least one of a series of logical arguments is true.

Syntax

OR ( logical_list )

Parameter Description
logical_list A list of conditions separated by commas. You can include as many as 30 conditions in the list.

The list can contain ONLY logical values. If there are non logical values in the list, the error value #VALUE! is returned.

Examples

This function returns True because one of the arguments is true:

OR(1 + 1 = 1, 5 + 5 = 10)

See also

AND

IF

NO