The is no such thing as a date of 1/2007. In actuality, they are text. Add
the docDate column, or a custom sorting table, depending upon how you need
to sort.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
Thanks. I know that 1/2007 is not a date, however, I need to summarize my
data in monthly buckets. I'm not attached to any specific format, but at the
end of the process I need to see 1/2005 (or 01/2005 or Jan-2005) with the
buckets sorting in chronological sequence.
I was using Excel until the size of the extracted data set exceeded the
65,536 row limit...
Doug
> The is no such thing as a date of 1/2007. In actuality, they are text. Add
> the docDate column, or a custom sorting table, depending upon how you need
[quoted text clipped - 18 lines]
> >
> > phaedrus12 at hotmail dot com
Arvin Meyer [MVP] - 23 May 2007 04:52 GMT
You can use Excel 2007 which handles more rows, but a database is the right
tool for large datasets. What I was suggesting is to build another table and
add rows like:
Month_Year Sort
1/2005 1
1/2006 2
1/2007 3
2/2005 4
etc.
In a new query, link the Month_Year column from the new table to the similar
column from the first query. Now add the Sort column and use it for the
Order By (sorting) clause.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
> Thanks. I know that 1/2007 is not a date, however, I need to summarize my
> data in monthly buckets. I'm not attached to any specific format, but at
[quoted text clipped - 36 lines]
>> >
>> > phaedrus12 at hotmail dot com