TIME Function -- Syntax and Examples

TIME([option])

time()

returns the current time in 24-hour format, for example "14:44:58"

time("C")

returns the current time in Civil format, for example "2:44pm"

SinceMid = time("H")

assigns the number of hours since midnight, for example "14", to the variable SinceMid

Next