Date.EndOfYear
Yıl sonunu döndürür.
Syntax
Date.EndOfYear(
dateTime as any
) as any
Remarks
Kesirlik saniyeler dahil olmak üzere dateTime
içeren yıl sonunu döndürür. Saat dilimi bilgileri korunur.
dateTime
: Kendisinden itibaren yılın sonunun hesaplandığıdate
,datetime
veyadatetimezone
değeri.
Examples
Example #1
14.05.2011 17:00:00 için yılın sonunu alır.
Date.EndOfYear(#datetime(2011, 5, 14, 17, 0, 0))
Result:
#datetime(2011, 12, 31, 23, 59, 59.9999999)
Example #2
17.05.2011 19:00 için saatin sonunu alır.
Date.EndOfYear(#datetimezone(2011, 5, 17, 5, 0, 0, -7, 0))
Result:
#datetimezone(2011, 12, 31, 23, 59, 59.9999999, -7, 0)
Category
Date