home *** CD-ROM | disk | FTP | other *** search
- TYPE
- Returns a number that represents one of four types of data that can be used in the argument value: blank, logical, number, and text.
-
- Format: TYPE (value)
-
- Argument:
- ΓÇó value: Any expression.
-
- Example:
- TYPE (A5) returns 1 (blank) if cell A5 is empty.
- TYPE (TRUE) returns 2 (logical).
- TYPE (1.5) returns 3 (number).
- TYPE ("hello") returns 4 (text).
- TYPE (PI ()) returns 3 (number).