MonthName fuction

Mitt1

Registered User.
Local time
Today, 10:37
Joined
Apr 20, 2016
Messages
19
Is there a way to display the current month using the MonthName fucntion instead of typing in the number.
 
Yes, you could print the name of the month of the current date using code like...
Code:
Debug.Print MonthName(Month(Date()))
 
format([dateField],"mmm")
or
format([dateField],"mmmm")
 

Users who are viewing this thread

Back
Top Bottom