OR


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

Syntax OR ( logical_list )

Argument 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 logical values or a reference to a range containing logical values. Text and empty cells are ignored. If there are no logical values in the list, the error value #VALUE! is returned.

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

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

See Also AND, IF, NOT