endofday
The endofday
function returns the end of the day containing the date, shifted by an offset, if provided.
Syntax
endofday( Date [, Offset] )
Arguments
- Date: The input date.
- Offset: An optional number of offset days from the input date (integer, default - 0).
Returns
A datetime
representing the end of the day for the given Date value, with the offset, if specified.
Example
| project dayEnd = endofday(datetime(2022-09-25 10:10:17), 1)
returns as1664236799.999
.