Related Topics: | ||
Description: Returns the year from the specified date value. The date can be entered as text in a valid date format or as a serial number. For example, the function returns 2011 if you enter "12/11/2011" or "40888."
Syntax: YEAR(Serial_number)
Serial_number is the date of the year you want to find. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2011,5,23) for the 23rd day of May, 2011. Problems can occur if dates are entered as text. (See the NOW function.) Note that the Serial_number must be in quotation marks.
Remarks:
The software stores dates as sequential serial numbers so they can be used in calculations. January 1, 1900 is serial number 1, and January 1, 2011 is serial number 40544 because it is 40,544 days after January 1, 1900. (See the NOW function.)
Values returned by the YEAR, MONTH and DAY functions will be Gregorian values regardless of the display format for the supplied date value. For example, if the display format of the supplied date is Hijri (Hijri calendar: The lunar calendar that is used in Islamic regions.), the returned values for the YEAR, MONTH and DAY functions will be values associated with the equivalent Gregorian date.
Example:
YEAR("7/5/2011") = 2011
YEAR("2005/05/01") = 2005
YEAR(0.007) = 1900
YEAR(35981.007) = 1998
© 1992-2015. ReliaSoft Corporation. ALL RIGHTS RESERVED.