Duration.ToRecord is a Power Query M function that converts a duration value to a record. The function returns a record containing the parts of the duration value.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Duration.ToRecord( duration as duration ) as record
Description
Returns a record containing the parts the duration value, duration
.
duration
: Aduration
from which the record is created.
Examples
Convert #duration( 2, 5, 55, 20 )
into a record of its parts including days, hours, minutes and seconds if applicable.
Duration.ToRecord( #duration( 2, 5, 55, 20 ) )
/* Output:
[
Days = 2,
Hours = 5,
Minutes = 55,
Seconds = 20
]
*/
Related functions
Other functions related to Duration.ToRecord are:
