Custom Date Format

  • Thread starter Thread starter Sue
  • Start date Start date
S

Sue

Access and Word 97
I have an Access database that is serving as a source for
Word merge files. I cannot get the dates to merge into
Word with a mmmm dd, yyyy (January 01, 2003) format.
Can anyone help?
Thanks
 
You should use a query as the source for your merge. You can then put the
following in a blank column of the grid:

Format([YourDateField],"mmmm dd, yyyy")
Substitute the name of your date field for YourDateField in the above.
 
Back
Top