YEAR (Primitive Spread Function) returns the year as an integer for a specified date.
SYNTAX:
YEAR(date)
REMARKS:
Specify the date argument as a serial value or date value. To provide a serial value from a date value, use the DATE or TODAY function.
Spread's calc engine processes dates as a numeric value in the form x.y, where x is the "number of days since December 30, 1899" and y is the fraction of day. Numbers to the left represent the date, which is the value that the DATE function returns. Use the TIME function to return the serial value for the time value (the fraction of a day).
Date values are based on the number of days elapsed since December 30, 1899, which has a date serial value of Day 0. For example, December 31, 1899 has a date serial value of 1. Date values prior to December 30, 1899 have negative date serial values. For example, the date value December 29, 1899 has a date serial value of –1.
EXAMPLES:
YEAR(A2)
YEAR(0.007)=1899