datetime_local_to_utc()

Learn how to use the datetime_local_to_utc() function to convert local datetime to UTC datetime.

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

Syntax

datetime_local_to_utc(from,timezone)

Parameters

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

Returns

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

Example

datatable(local_dt: datetime, tz: string)
[ datetime(2020-02-02 20:02:20), 'US/Pacific', 
  datetime(2020-02-02 20:02:20), 'America/Chicago', 
  datetime(2020-02-02 20:02:20), 'Europe/Paris']
| extend utc_dt = datetime_local_to_utc(local_dt, tz)

Output

local_dttzutc_dt
2020-02-02 20:02:20.0000000Europe/Paris2020-02-02 19:02:20.0000000
2020-02-02 20:02:20.0000000America/Chicago2020-02-03 02:02:20.0000000
2020-02-02 20:02:20.0000000US/Pacific2020-02-03 04:02:20.0000000
range Local from datetime(2022-03-27 01:00:00.0000000) to datetime(2022-03-27 04:00:00.0000000) step 1h
| extend UTC=datetime_local_to_utc(Local, 'Europe/Brussels')
| extend BackToLocal=datetime_utc_to_local(UTC, 'Europe/Brussels')
| extend diff=Local-BackToLocal
LocalUTCBackToLocaldiff
2022-03-27 02:00:00.00000002022-03-27 00:00:00.00000002022-03-27 01:00:00.000000001:00:00
2022-03-27 01:00:00.00000002022-03-27 00:00:00.00000002022-03-27 01:00:00.000000000:00:00
2022-03-27 03:00:00.00000002022-03-27 01:00:00.00000002022-03-27 03:00:00.000000000:00:00
2022-03-27 04:00:00.00000002022-03-27 02:00:00.00000002022-03-27 04:00:00.000000000:00:00