CitectVBA Programming Reference > CitectVBA Function Reference > Date and Time Functions > Second

Second

Calculates the second value from the given time argument passed to the function.

Syntax

Second(Time)

Time:

A string or expression that can represent a time value. This includes and combination of time literals, numbers that look like times, strings that look like times, and times from functions.

Return Value

Returns an integer that is the second portion of the parameter (Time).

Related Functions

Hour | Minute

Example

Dim varMySec, varMyTime
varMyTime = "08:04:23 PM"
varMySec = Second(varMyTime)
' stores seconds value.