Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns the start of the week containing the date, shifted by an offset, if provided.
Start of the week is considered to be a Sunday.
startofweek(
date [,
offset ])
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
date | datetime |
✔️ | The date for which to find the start of week. |
offset | int |
The number of weeks to offset from the input date. The default is 0. |
A datetime representing the start of the week for the given date value, with the offset, if specified.
range offset from -1 to 1 step 1
| project weekStart = startofweek(datetime(2017-01-01 10:10:17), offset)
Output
weekStart |
---|
2016-12-25 00:00:00.0000000 |
2017-01-01 00:00:00.0000000 |
2017-01-08 00:00:00.0000000 |