DateTimeZone.FixedUtcNow Function in Power Query

The DateTimeZone.FixedUtcNow function is a specialized function in Power Query (M language) that returns the current UTC date and time with a fixed UTC timezone offset (+00:00).

Syntax

DateTimeZone.FixedUtcNow() as datetimezone

Example:

Power Query M

let
    Source = DateTimeZone.FixedUtcNow()
in
    Source        

The output of the above code is 2025-04-12T04:24:54.3798527+00:00.

Behavior