datetime_utc_to_local()

This article describes the datetime_utc_to_local function.

Converts UTC datetime to local datetime using a time-zone specification.

Syntax

datetime_utc_to_local(from,timezone)

Parameters

NameTypeRequiredDescription
fromdatetime✔️The UTC datetime to convert.
timezonestring✔️The timezone to convert to. This value must be one of the supported timezones.

Returns

A local datetime in the timezone that corresponds the UTC datetime.

Example

print dt=now()
| extend pacific_dt = datetime_utc_to_local(dt, 'US/Pacific'), canberra_dt = datetime_utc_to_local(dt, 'Australia/Canberra')
| extend diff = pacific_dt - canberra_dt

Output

dtpacific_dtcanberra_dtdiff
2022-07-11 22:18:48.46786202022-07-11 15:18:48.46786202022-07-12 08:18:48.4678620-17:00:00