Time
The Time function returns a time value based on three numeric arguments
<Hour> is the hour as an integer.
<Minute> is the minute of the hour as an integer.
<Second> is second of the minute as an integer.
Usage:
= Time(<hour>, <minute>, <second>)
Examples:
/* returns 08:09:22 */
= Time(8, 9, 22);
/* returns 14:09:22 */
= Time(14, 9, 22);