Date.StartOfDay
Returns the start of the day.
Syntax
Date.StartOfDay(
dateTime as any
) as any
Remarks
Returns the start of the day represented by dateTime
. dateTime
must be a date
, datetime
, or datetimezone
value.
Examples
Example #1
Find the start of the day for October 10th, 2011, 8:00AM.
Date.StartOfDay(#datetime(2011, 10, 10, 8, 0, 0))
Result:
#datetime(2011, 10, 10, 0, 0, 0)
Category
Date