Month Function

Syntax:
Month(dateexpr)
Group: Time/Date
Description:
Return the month of the year (1 to 12).
Parameter Description

dateexpr Return the month of the year for this date value. If this value is Null then Null is returned.
See Also: Date( ), Day( ), Weekday( ), Year( ).
Example:

Sub Main
Debug
.Print Month(#1/1/1900#) ' 1
End
Sub