Date.EndOfDay
Returns the last value of the day.
function (optionaldateTime
as nullable any) as nullable any
Returns a
date
, datetime
, or datetimezone
value representing the end of the day in dateTime
. Time zone information is preserved. Date
Get the end of the day for 5/14/2011 05:00:00 PM.
Date.EndOfDay(#datetime(2011, 5, 14, 17, 0, 0))
datetime(2011, 5, 14, 23, 59, 59.9999999)
Get the end of the day for 5/17/2011 05:00:00 PM -7:00.
Date.EndOfDay(#datetimezone(2011, 5, 17, 5, 0, 0, -7, 0))
datetimezone(2011, 5, 17, 23, 59, 59.9999999, -7, 0)
Last modified 4yr ago