
converting "11" to "November", etc.
And generalizing this idea, if you have the month number in, say,
[MonthNo], you could use the following expression:
Format(DateSerial(1, [MonthNo], 1), "mmmm")
If you have a complete date, you can use just
Format([DateField], "mmmm")
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)
Quote:
> try to use:
> format(#11/1/1#,"mmmm")
> --
> Alex Dybenko (MVP)
> http://Alex.Dybenko.com
> > How can I convert the numerical representation of a
> > month/date to it's english equivilent?
> > Thanks!