CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
Date
The Date function returns a date value based on three numeric arguments.
<Year> is the year as an integer
<Month> is the month of the year as an integer, with January equal to 1
<Day> is the day of the month as an integer, with the 1st of the month equal to 1
31-Dec-1899 is serial day number 1.
Usage:
	= Date(<year>, <month>, <day>)
Examples:
	/* returns 4-Mar-2001 */
	= Date(2001, 3, 4);
	/* returns 1 */
	= Int(Date(1899, 12, 31));
	/* returns 2 */
	= Int(Date(1900, 1, 1));