AND: Determine if Two Conditions are Both True

Description Usage Arguments Value Author(s) Examples

View source: R/AND.R

Description

Evaluates both conditions to determines if both of them are true.

Usage

1
AND(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 both conditions are true. Otherwise returns false.

Author(s)

Nick Bultman, njbultman74@gmail.com, January 2021

Examples

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

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