Notes
OR(logical1,logical2,...)
Checks whether any of the arguments are true and returns TRUE or FALSE. Returns FALSE only if all arguments are false.
OR(True, True) = True
OR(True, False) = True
OR(False, True) = True
OR(False, False) = False
OR(True, False, False) = True
OR(False, False, False) = False