Difference between revisions of "Manuals/calci/ISNUMBER"

From ZCubes Wiki
Jump to navigation Jump to search
Line 1: Line 1:
<div style="font-size:30px">'''ISNUMBER(n)'''</div><br/>
+
<div style="font-size:30px">'''ISNUMBER(Number)'''</div><br/>
*<math>n</math> is the number
+
*<math>Number</math> is any number.
  
 
==Description==
 
==Description==
Line 10: Line 10:
 
*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.
 
*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 Section==
 +
*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==
 
==Examples==
 
#=ISNUMBER(2) = TRUE
 
#=ISNUMBER(2) = TRUE

Revision as of 22:06, 3 July 2014

ISNUMBER(Number)


  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Number} is any number.

Description

  • This function is one of the group in Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ISFUNCTIONS} .
  • The Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle IS FUNCTION} is also known as data information functions, data inspection functions or data-testing functions.
  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ISNUMBER} 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 Section

  • The syntax is to find whether the given data is a number in ZOS is Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ISNUMBER(Number)} .
    • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Number} is any number.
  • For e.g.,ISNUMBER(log(20)),ISNUMBER(sum(10,20,30,40,50))

Examples

  1. =ISNUMBER(2) = TRUE
  2. =ISNUMBER(0) = TRUE
  3. =ISNUMBER(-100) = TRUE
  4. =ISNUMBER(y) = NULL
  5. =ISNUMBER($) = FALSE
  6. =ISNUMBER("17") = TRUE

See Also

References

Is functions