CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
IsError
The IsError function returns true if the argument is contains an error and false otherwise.
Usage:
	= isError(<cell_or_value>);
Examples:
	= isError(A6);
	/* returns true */
	= isError(1/0);
	/* returns false */
	= isError("");