Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Duration.ToRecord(duration as duration) as record
About
Returns a record containing the parts the duration value, duration
.
duration
: Aduration
from which the record is created.
Example 1
Convert #duration(2, 5, 55, 20)
into a record of its parts including days, hours, minutes, and seconds if applicable.
Usage
Duration.ToRecord(#duration(2, 5, 55, 20))
Output
[
Days = 2,
Hours = 5,
Minutes = 55,
Seconds = 20
]