time
Construct a time fraction from hour, minute, second.
Syntax
Section titled “Syntax”v = time(hour, minute, second)Description
Section titled “Description”Returns a fraction of a day — (hour + minute/60 + second/3600) / 24. Add to a date serial to get a date-time.
Example
Section titled “Example”time(14, 30, 0) % 0.6042 (= 14:30)