CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
Minute
The Minute function determines the sequential number of the minute of the hour (0-59) for the time value or the fraction of a day.
Usage:
	= Minute(<time_or_fraction>)
Examples:
	/* returns 23 */
	= Minute("13:23:46");
	/* returns 24 */
	= Minute(0.6);
	/* returns 0 */
	= Minute(-3.25);