Month (function)

<< Click to Display Table of Contents >>

Month (function)

Month(Expression)

Returns the month of the given date as an integer number.

Expression is a numeric or string expression which represents a date.

See also: Date, Day, Hour, Minute, Now, Second, Time, Weekday, Year

Example:

Sub Main

 T1 = Now     ' Now = current date + time

 MsgBox T1

 MsgBox "Day: " & Day(T1)

 MsgBox "Month: " & Month(T1)

 MsgBox "Year: " & Year(T1)

 MsgBox "Hours: " & Hour(T1)

 MsgBox "Minutes: " & Minute(T1)

 MsgBox "Seconds: " & Second(T1)

End Sub