MonthName(Month(Date), True) : MonthName « Date Functions « VBA / Excel / Access / Word






MonthName(Month(Date), True)

 
Sub Main7()
   Debug.Print "Today's date is: " & Date
   Debug.Print "The month abbreviated is: " & MonthName(Month(Date), True)
End Sub

 








Related examples in the same category

1.MonthName returns the text string associated with a month number:
2.MonthName(month) returns A String containing the name of the month represented by month
3.MonthName(Month(Date))