Date.StartOfDay

Date.StartOfDay is a Power Query M function that returns the start of the day represented by dateTime. Your input must be a date, datetime, or datetimezone value.

Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365

Syntax

Date.StartOfDay( dateTime as any ) as any

Description

Returns the start of the day represented by dateTime. dateTime must be a date, datetime, or datetimezone value.

Examples

Find the start of the day for October 10th, 2011, 8:00AM.

// Output: #datetime( 2011, 10, 10, 0, 0, 0 )
Date.StartOfDay( #datetime( 2011, 10, 10, 8, 0, 0 ) )

Other functions related to Date.StartOfDay are:

BI Gorilla Youtube Channel

Last update: August 25, 2023 | Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/powerquery-m/date-startofday
© 2023 BI Gorilla. All rights reserved. Content derived from Microsoft documentation is property of Microsoft Corp.