The OR function returns the logical OR of its arguments. The arguments must be logical conditions that can take the value TRUE or FALSE.
For example:
OR(FALSE, FALSE) |
returns FALSE |
OR(TRUE, FALSE) |
returns TRUE |
OR(2*3 < 7, 100 = 10) |
returns TRUE |
See also: