make_timespan()

Learn how to use the make_timespan() function to create a timespan scalar value from the specified time period.

Creates a timespan scalar value from the specified time period.

Syntax

make_timespan(hour, minute)

make_timespan(hour, minute, second)

make_timespan(day, hour, minute, second)

Parameters

NameTypeRequiredDescription
dayint✔️The day.
hourint✔️The hour. A value from 0-23.
minuteintThe minute. A value from 0-59.
secondrealThe second. A value from 0 to 59.9999999.

Returns

If the creation is successful, the result will be a timespan value. Otherwise, the result will be null.

Example

print ['timespan'] = make_timespan(1,12,30,55.123)

Output

timespan
1.12:30:55.1230000