VBA Minute Function
In this Article
Minute Description
Returns the minutes (a number from 0 to 59) from a time value.
Simple Minute Examples
Here is a simple Hour example:
Sub Minute_Example()
MsgBox Minute(#8/14/2019 5:25:00 AM#)
End Sub
This code will return 25.
Minute Syntax
In the VBA Editor, you can type “Minute(” to see the syntax for the Minute Function:
The Minute function contains an argument:
Time: A valid time.
Examples of Excel VBA Minute Function
MsgBox Minute("8/14/2019 15:33:00")
Result: 33
MsgBox Minute(#8/14/2019 5:12:00 PM#)
Result: 12
MsgBox Minute("6:48:00")
Result: 48
MsgBox Minute(Now)
Result will be the minute of the current system time.