CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
IsBlank
The IsBlank function returns true if the argument is empty and false otherwise.
Usage:
	= isBlank(<cell_or_expression>);
Examples:
	= isBlank(A6);
	/* returns true */
	= isBlank("");
	/* returns false */
	= isBlank("   ");
	/* returns false */
	= isBlank(0);