VBA Second Function
In this Article
Second Description
Returns the second component of a supplied time.
Simple Second Examples
Here is a simple Second example:
Sub Second_Example()
MsgBox Second(#1:30:25 AM#)
End Sub
This code will return 25.
Second Syntax
In the VBA Editor, you can type “Second(” to see the syntax for the Second Function:
The Second function contains an argument:
Time: A valid time.
Examples of Excel VBA Second Function
MsgBox Second("1/1/2019 1:30:20 PM")
Result: 20
MsgBox Second(#8/14/2019 5:12:15 PM#)
Result: 15
MsgBox Second("1:30:35 AM")
Result: 35