Difference between revisions of "Manuals/calci/ISNUMBER"
Jump to navigation
Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''ISNUMBER'''(Value) where, '''Value''' - represents the value in cell. </div> ---- <div id="1SpaceCon...") |
|||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | <div | + | <div style="font-size:30px">'''ISNUMBER(Number)'''</div><br/> |
+ | *<math>Number</math> is any number. | ||
+ | **ISNUMBER(),Returns TRUE if the value is a number. | ||
− | + | ==Description== | |
+ | *This function is one of the group in <math> ISFUNCTIONS</math>. | ||
+ | *The <math>IS FUNCTION</math> is also known as data information functions, data inspection functions or data-testing functions. | ||
+ | *<math>ISNUMBER</math> is used to test given value is number or not. | ||
+ | *This function gives the result as TRUE when the given value is the number otherwise this function gives th result as FALSE. | ||
+ | *This function will not convert any numbers from text. | ||
+ | *For e.g. "20" is normally converted as a number 20. But in ISNUMBER("20") will return FALSE, because "20" will not convert in to number. | ||
− | + | ==ZOS== | |
+ | *The syntax is to find whether the given data is a number in ZOS is <math>ISNUMBER(Number)</math>. | ||
+ | **<math>Number</math> is any number. | ||
+ | *For e.g.,ISNUMBER(log(20)),ISNUMBER(SUM(10,20,30,40,50)) | ||
− | + | ==Examples== | |
+ | #=ISNUMBER(2) = TRUE | ||
+ | #=ISNUMBER(0) = TRUE | ||
+ | #=ISNUMBER(-100) = TRUE | ||
+ | #=ISNUMBER(y) = NULL | ||
+ | #=ISNUMBER($) = FALSE | ||
+ | #=ISNUMBER("17") = TRUE | ||
− | + | ==Related Videos== | |
− | |||
− | |||
− | + | {{#ev:youtube|oD0srLcl3vo|280|center|ISNUMBER}} | |
− | + | ==See Also== | |
− | + | *[[Manuals/calci/ISLOGICAL | ISLOGICAL ]] | |
− | + | *[[Manuals/calci/ISODD | ISODD ]] | |
+ | *[[Manuals/calci/ISEVEN | ISEVEN ]] | ||
− | + | ==References== | |
− | + | [http://en.wikipedia.org/wiki/Is_functions Is functions] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | *[[Z_API_Functions | List of Main Z Functions]] | |
− | + | *[[ Z3 | Z3 home ]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 15:50, 2 July 2018
ISNUMBER(Number)
- is any number.
- ISNUMBER(),Returns TRUE if the value is a number.
Description
- This function is one of the group in .
- The is also known as data information functions, data inspection functions or data-testing functions.
- is used to test given value is number or not.
- This function gives the result as TRUE when the given value is the number otherwise this function gives th result as FALSE.
- This function will not convert any numbers from text.
- For e.g. "20" is normally converted as a number 20. But in ISNUMBER("20") will return FALSE, because "20" will not convert in to number.
ZOS
- The syntax is to find whether the given data is a number in ZOS is .
- is any number.
- For e.g.,ISNUMBER(log(20)),ISNUMBER(SUM(10,20,30,40,50))
Examples
- =ISNUMBER(2) = TRUE
- =ISNUMBER(0) = TRUE
- =ISNUMBER(-100) = TRUE
- =ISNUMBER(y) = NULL
- =ISNUMBER($) = FALSE
- =ISNUMBER("17") = TRUE
Related Videos
See Also
References