What does this function do?
Evaluates the given arguments and returns TRUE if at least one of the arguments are true, or FALSE if none is met.
Syntax:
OR(logical1, [logical2]...[logicalN]) with N=255
logical1 (required): First condition to evaluate.
logical2 (optional): Additional conditions to evaluate.
Examples:
If A1 = 1 and B1 = 0
= OR(A1>0, B1>0) = TRUE
= OR(A1>1, B1>0) = FALSE
No comments:
Post a Comment