1
111
I have a select query with the following field:
year: DatePart("m",[Date]) & ", " & DatePart("yyyy",[Date])
this returns dates such as 9,2003 & 11,2003 etc.
this is fine but i would like to have these dates now listed in decending
order.
When i set the query to sort decending i get:
9,2003
8,2003
11,2003
10,2003
This isn't the chronological order i was hoping for.
Can anyone tell me how to get these dates to list properly?
tks
Steve
year: DatePart("m",[Date]) & ", " & DatePart("yyyy",[Date])
this returns dates such as 9,2003 & 11,2003 etc.
this is fine but i would like to have these dates now listed in decending
order.
When i set the query to sort decending i get:
9,2003
8,2003
11,2003
10,2003
This isn't the chronological order i was hoping for.
Can anyone tell me how to get these dates to list properly?
tks
Steve