Month(date) returns a Variant/Integer between 1 and 12, inclusive, representing the month for date : Month « Excel « VBA / Excel / Access / Word






Month(date) returns a Variant/Integer between 1 and 12, inclusive, representing the month for date

 
Sub dateDemo8()
   Debug.Print Month(Date) & "/" & Day(Date)
End Sub

 








Related examples in the same category

1.Month("Feb 4, 1900") returns 2
2.Month(Date)