Skip to main content
Workday User Guide
Last Updated: 2023-06-23
OR

OR

Description

Tests the specified conditions and returns True if any of the conditions are true; otherwise, returns False.

Syntax

OR(
value1
,
value2
,...)
  • value1
    : A condition to test.
  • value2
    : A condition to test.

Example

Formula
Result
=OR(1 > 0,5 < 10)
TRUE
=OR(1 > 2,5 > 10)
FALSE