ENDOFYEAR

Returns the end date of the year passed to the function.  The time returned is 11:59:59 PM.

Syntax

= ENDOFYEAR(valueDate)

Parameters

valueDate

A date time value whose start date of the week is to be determined. The value can contain DateTime as a string (e.g. “02/19/2009 14:30:30.3”, "2009-02-19 14:30:30.3", "19 Feb 2009 2:30:30.3 PM ", "Thu, 19 Feb 2009”) or as a DateTime object.

Return Type

DateTime. The function returns a Microsoft .NET DateTime object.  Any properties or member functions of the DateTime object can also be accessed or used in formulas.

Examples

Example

Returns

= ENDOFYEAR(“2/2/2010”)

1/1/2010 12:00:00 AM

= ENDOFYEAR(“2/2/2010”).Year

The year extracted from end of the year.

= ENDOFYEAR(“2/2/2010”).AddDays(1)

The start date of the year next to the given date.

= ENDOFYEAR(“2/2/2010”).AddDays(1).YEAR

The year next to the given date.

Reference

http://msdn.microsoft.com/en-us/library/system.datetime_members(VS.71).aspx