NOT {ExcelFunctionsR}R Documentation

Basic NOT function from excel

Description

It acts similiarly to Excel's NOT function. It returns the opposite of the logical you specify.

Usage

NOT(logical)

Arguments

logical

Enter the logical to get the opposite logical of it. For example if you input TRUE, it will get FALSE.

Value

in the first example it will return false while in the 2nd example it will return true. Function will always return logical class.

Examples

NOT(TRUE)
NOT(FALSE)

[Package ExcelFunctionsR version 0.1.4 Index]