Description
The Minute() function returns a number between 0 and 59 that represents the minute of the hour.
This function has the form:
Minute(time)
Parameter | Description |
---|---|
time | (required) Any expression that can represent a time |
Examples
The following examples show the basic use of this function:
Example 1
Msgbox(Minute("13:45"))
This produces the following result:
45
Example 2
Msgbox(Minute(Now()))
Miscellaneous Information
Supported in Version: | 1.0 |
---|