OR: Determine if One of Two Conditions are True

Description Usage Arguments Value Author(s) Examples

View source: R/OR.R

Description

Evaluates both conditions to determines if one of them is true.

Usage

1
OR(condition_1, condition_2)

Arguments

condition_1

First condition that you would like evaluated.

condition_2

Second condition that you would like evaluated.

Value

Returns true if at least one of the conditions are true. Otherwise returns false.

Author(s)

Nick Bultman, njbultman74@gmail.com, January 2021

Examples

1
2
3
OR(2 == 2, 4 == 4)
OR(2 == 2, 4 != 4)
OR(2 != 2, 4 != 4)

njbultman/xlsxFunctions documentation built on Aug. 8, 2021, 3:14 p.m.