User Tools

Site Tools


syntax:functions:isodd

IsOdd(number)

Category: Number function


Description

This function tests if number is odd and returns Boolean TRUE if so, or FALSE if not.


Arguments

ArgumentTypeDescription
numberIntegerThe value to be tested as odd.


Return value type: Boolean (TRUE/FALSE)


Remarks

Passing in a date value results in a valid result based on the converted date serial value.


Examples

isodd(1) //Returns TRUE
isodd(42) //Returns FALSE
isodd(#2021-10-21) //Returns FALSE (2021-10-21 is 44480 as a date serial value, which is not odd.)
isodd(10*100) //Returns FALSE  (Passing in calculations is supported.)
isodd({MyNum}*[MyVal]) //Returns TRUE  ({MyNum}=5, [MyVal]=3; parameters are supported.)
isodd(2.5) //Returns "#The argument must be a whole number."


See also

syntax/functions/isodd.txt · Last modified: 2021/08/11 15:24 by craigt

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki