Difference between revisions of "Manuals/calci/ISODD"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
==Examples== | ==Examples== | ||
− | #ISODD(5)=TRUE | + | #=ISODD(5) = TRUE |
− | #ISODD(0)=TRUE | + | #=ISODD(0) = TRUE |
− | #ISODD(100)=FALSE | + | #=ISODD(100) = FALSE |
− | #ISODD(5*3)=TRUE | + | #=ISODD(5*3) = TRUE |
− | #ISODD(500/10.5)=TRUE | + | #=ISODD(500/10.5) = TRUE |
− | #ISODD(5624.76-2654.42)=FALSE | + | #=ISODD(5624.76-2654.42) = FALSE |
− | #ISODD(265+452)=TRUE | + | #=ISODD(265+452) = TRUE |
− | #ISODD(-465)=TRUE | + | #=ISODD(-465) = TRUE |
+ | |||
==See Also== | ==See Also== | ||
*[[Manuals/calci/ISEVEN | ISEVEN ]] | *[[Manuals/calci/ISEVEN | ISEVEN ]] |
Revision as of 03:41, 12 December 2013
ISODD(n)
- is the value to test.
Description
- This function is one of the group in ISFUNCTIONS.
- The IS FUNCTION is also known as Data Information Functions, Data Inspection Functions or Data-testing Functions.
- ISODD function can be used to check the given value is odd or not.
- This function gives the result as only TRUE or FALSE.
- The result is TRUE when the value is odd otherwise the result is FALSE..
- The argument can be blank, or it can contain data such as text,numbers,error values,logical values or any equations.
- This function will not convert any numbers from the text.
- For e.g. "11" is normally converted as a number 11.
- But in ISODD("11") will return NAN, because "11" will not convert in to number.
Examples
- =ISODD(5) = TRUE
- =ISODD(0) = TRUE
- =ISODD(100) = FALSE
- =ISODD(5*3) = TRUE
- =ISODD(500/10.5) = TRUE
- =ISODD(5624.76-2654.42) = FALSE
- =ISODD(265+452) = TRUE
- =ISODD(-465) = TRUE