ISEVEN {ExcelFunctionsR} | R Documentation |
Basic ISEVEN function from excel
Description
It acts similiarly to Excel's ISEVEN function. If the specified number is even then it returns true, if not then false.
Usage
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
ISEVEN(2)
ISEVEN(1)
[Package ExcelFunctionsR version 0.1.4 Index]