ISODD: Basic ISODD function from excel

Description Usage Arguments Value Examples

View source: R/ISODD.R

Description

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

Usage

1
ISODD(number)

Arguments

number

Input the number for it to evaluate if it is an odd number? Works on vectors/arrays as well.

Value

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

Examples

1
2
ISODD(1)
ISODD(2)

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