ISEVEN: Basic ISEVEN function from excel

Description Usage Arguments Value Examples

View source: R/ISEVEN.R

Description

It acts similiarly to Excel's ISEVEN function. If the specified number is even then it returns true, if not then false.

Usage

1
ISEVEN(number)

Arguments

number

Input the number for it to evaluate if it is even?

Value

First example returns true as it is an even number 2, second example returns false as it isn't an even number. Function will always return logical class.

Examples

1
2
ISEVEN(2)
ISEVEN(1)

ExcelFunctionsR documentation built on July 1, 2020, 8:35 p.m.