Sorting Dates

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to sort dates that have various years but I want them to group (sort)
by month/day. Any suggestions?
 
Make a query where you build a field like this:
Month: Format([tblMain]![DateEntered],"mm/dd")

ChrisJ
Omaha
 
I want to sort dates that have various years but I want them to group (sort)
by month/day. Any suggestions?

Two ways:

- Add a calculated field to the Query by putting

MonthDay: Format([datefield], "mmdd")

in a vacant Field cell, and sort by this; or

- Add two calculated fields Month([datefield]) and Day([datefield])
and sort by them.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top