Convert a number into the Month

  • Thread starter Tom K via AccessMonster.com
  • Start date
T

Tom K via AccessMonster.com

How can I convert a number (1 to 12) into a Month (January, February, ect)?
 
K

Ken Snell [MVP]

Use the MonthName function -- from the Immediate Window:

?MonthName(1)
January
 
Top