logo
excelfunctions.org
bookmarks

OR

Returns TRUE if any argument is TRUE.

LogicalBeginner EssentialsLogic & ConditionsMost Used

What it does

Returns TRUE if any condition is TRUE.

Syntax

OR(logical1, [logical2], ...)

Arguments

  • logical1(logical) β€” First condition to test.

Examples

Any condition can pass

Check if Region is "EU" OR "UK".

FORMULA
=OR(A2="EU",A2="UK")
RESULT
true
SAMPLE DATA
A
1Region
2EU
3US
4UK