Sorting Dates in Acsending Order

Random_Guy

New member
Local time
Yesterday, 19:20
Joined
Aug 12, 2009
Messages
2
On my query, I wish to sort my dates in ascending order of months, not year. At the moment, my date format is dd/mm/yyyy, and I wish to keep it this way.

Whenever I sort the date in ascending order, this is what happens:

01/05/1994
24/08/1994
02/02/1995
15/03/2000

As you can see, I want to sort the dates in month order, which means that this is the order which I want:
02/02/1995
15/03/2000
01/05/1994
24/08/1994

Can this be done?

Thanks.
 
make a new column with the function: Format([yourDateField], "MMDDYYYY")
Sort on this new column, you can even hide the column from view...

alternatively... if you want to sort on year next instead of day...
Format([yourDateField], "MMYYYYDD")

Or use the Year, Month, Day functions in a simular hidden column to sort..

Good luck.... and welcome to AWF
 
Thanks a bunch! Now I'll pass my IT!
 

Users who are viewing this thread

Back
Top Bottom