You posted in a newsgroup that supports the use of queries in MS Access.
Before you go any futher, remember that how data is stored in a table IS NOT
the same as how you may have chosen to display it (i.e., the "format").
First, is your underlying date stored in an Access date/time field? If so,
you can use the Access date/time functions to create additional columns in
your query.
To get the month of your date, you could use the Month() function on the
date, or you could use something like (untested):
YourMonth: Format([datefield],"mmmm")
Similarly, you could use the Year() function or format the date to display
only the "yyyy".
Good luck!
Regards
Jeff Boyce
Microsoft Access MVP
--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.
Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.
You can thank the FTC of the USA for making this disclaimer
possible/necessary.