Date.EndOfDay

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns a DateTime value for the end of the day.

Date.EndOfDay(dateTime as nullable datetime) as nullable datetime  

ArgumentDescription
dateTimeThe DateTime to check against.
  • The date and time portions are reset to their initial values for the day.

  • The timezone information is persisted.

dateTime = DateTimeZone.FromText("2011-02-21T12:30:00-08:00");  
Date.EndOfDay(dateTime) equals 2011-02-21T23:59:590-08:00  

The following day values can be used DateTime functions.

Day

DayValue
Day.Sunday0
Day.Monday1
Day.Tuesday2
Day.Wednesday3
Day.Thursday4
Day.Friday5
Day.Saturday6
Show: