Skip to main content
Version: Streamsheets 2.5

OR

Evaluates, if at least one of the given values is true.

Syntax

=OR(Value1, [Value2, ...])

Arguments

NameDescription
Value1First value to check
Value2, ... (optional)Other values to check

Return

TRUE, if at least one of the arguments are true, otherwise FALSE.

Examples

FormulaResultComment
=OR(TRUE, 0)
TRUE0 is evaluated as FALSE
=OR(FALSE, "Test")
TRUENon empty strings are evaluated as TRUE
=OR(FALSE, 0)
FALSE0 is evaluated as FALSE