Duration.ToText
Duration.ToText(duration as nullable duration, optional format as nullable text) as nullable text
Returns a textual representation in the form "day.hour:mins:sec" of the given duration value, duration. A text value that specifies the format can be provided as an optional second parameter, format.
duration: Adurationfrom which the textual representation is calculated.format: [Optional] Atextvalue that specifies the format.
Convert #duration(2, 5, 55, 20) into a text value.
Duration.ToText(#duration(2, 5, 55, 20))
"2.05:55:20"
Show: