Skip to content

OR

Returns TRUE if any input is TRUE.

OR function overview

Function syntax

OR(logical1, logical2, ...)

Arguments:

  • logical1, logical2, …: Two or more expressions that evaluate to TRUE or FALSE.

Examples

  • OR(A5>3, SUM(revenue{})>SUM(cost{})) - TRUE if either condition is TRUE.
  • OR(FALSE, FALSE, TRUE) - Returns TRUE because at least one input is TRUE.