OR(b1, b2, ...)
OR implements the logical OR function: the result is TRUE if any of the values evaluated to TRUE.
b1 through bN are expressions that should evaluate to TRUE or FALSE. If an integer or floating point value is provided, zero is considered FALSE and anything else is TRUE.
OR(TRUE,FALSE) equals TRUE.
OR(3>4,4<3) equals FALSE.