Duration.ToText
Returns the text of the form "d.h:m:s".
function (optionalduration
as nullable any, optionalformat
as nullable any) as nullable any
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
Convert
#duration(2, 5, 55, 20)
into a text value.Duration.ToText(#duration(2, 5, 55, 20))
"2.05:55:20"
Last modified 4yr ago