Date.EndOfDay
Gün sonunu döndürür.
Syntax
Date.EndOfDay(
dateTime as any
) as any
Remarks
dateTime
tarafından temsil edilen gün sonunu döndürür. Saat dilimi bilgileri korunur.
dateTime
: Kendisinden itibaren günün sonunun hesaplandığıdate
,datetime
veyadatetimezone
değeri.
Examples
Example #1
14.05.2011 17:00:00 için günün sonunu alır.
Date.EndOfDay(#datetime(2011, 5, 14, 17, 0, 0))
Result:
#datetime(2011, 5, 14, 23, 59, 59.9999999)
Example #2
17.05.2011 19:00 için günün sonunu alır.
Date.EndOfDay(#datetimezone(2011, 5, 17, 5, 0, 0, -7, 0))
Result:
#datetimezone(2011, 5, 17, 23, 59, 59.9999999, -7, 0)
Category
Date