Time.Minute Function in Power Query
The Time.Minute function in Power Query returns a minute value from a DateTime value.
Syntax
Time.Minute(dateTime as any) as nullable number
The function has the parameter dateTime as any. It returns a number representing the minutes part of the time.
Example: Extract the minute component.
Power Query M
let Source = Time.Minute(#time(20, 54, 25)) in Source
The output of the above code is 54.