Printing a date without the year

  • Thread starter Thread starter C Schroder
  • Start date Start date
C

C Schroder

I am new to Access, and I want to know how to display just the month and the
day not the year. Is there anyway to do this
 
Display it where? Form, Query, Report???

One option would be to use the Format(), somthing like
Format(Date(),"mmmm-dd")

Lookup the Format function to see all the variables available to control the
output format.
--
Hope this helps,

Daniel Pineault
http://www.cardaconsultants.com/
For Access Tips and Examples: http://www.devhut.net
Please rate this post using the vote buttons if it was helpful.
 
Back
Top