Skip to main content
Version: Streamsheets 3.0

OR

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

Syntax

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

Arguments

NameTypeDescription
Value1ValueFirst value to check
Value2, ... (optional)ValueOther values to check

Return

TypeDescription
BooleanTRUE, 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