How do I display calendar month by name, not number

  • Thread starter Thread starter Chet in Colorado
  • Start date Start date
Depending on your version of Access, you could probably use the MonthName()
function. You could also use an expression like:
=Format(DateSerial(2000,[Month Field],1),"mmmm")
 
Back
Top