- SpreadJS Overview
- Getting Started
- JavaScript Frameworks
- Best Practices
- Features
- SpreadJS Designer
- SpreadJS Designer Component
- SpreadJS Collaboration Server
- Touch Support
-
Formula Reference
- Formula Overview
-
Formula Functions
- Barcode Functions
- Compatibility Functions
- Database Functions
- Date and Time Functions
- Engineering Functions
- Financial Functions
- Information Functions
- Logical Functions
- Lookup and Reference Functions
- Math and Trigonometric Functions
- Statistical Functions
- Sparkline Functions
- Text Functions
- Web Functions
- RegEx Functions
- Other Functions
- Import and Export Reference
- Frequently Used Events
- API Documentation
- Release Notes
ISNUMBER
This function tests whether a value, an expression or contents of a referenced cell has numeric data.
Syntax
ISNUMBER(cellreference)
ISNUMBER(value)
ISNUMBER(expression)
Arguments
Specify a cell reference, a numeric or text value, or an expression for the argument.
Remarks
Use this function to test the contents of a cell, a numeric or text value directly, or a function or expression.
This function returns TRUE if the argument is or refers to a number, and returns FALSE if the argument is or refers to a value that is not a number. This function returns FALSE if the value is or refers to a cell with no data.
You might want to use this function to test whether cells contain numeric data before you perform mathematical operations on them, such as averaging the contents of a range of cells.
Data Types
Accepts any data type for an argument. Returns Boolean (TRUE or FALSE) data.
Examples
ISNUMBER(B3)
ISNUMBER(R1C2)
ISNUMBER(12) gives the result TRUE