I have a query as follows -
SELECT Format([StartDate],"mmm") AS Month, Count(*) AS Bookings
FROM tblbookings
WHERE (((tblbookings.StartDate) Between #12/31/2004# And #12/31/2005#))
GROUP BY Format([StartDate],"mmm");
I want to order the results by month but when I try the list is in alphabetical order instead of month order. Can anyone help me?
SELECT Format([StartDate],"mmm") AS Month, Count(*) AS Bookings
FROM tblbookings
WHERE (((tblbookings.StartDate) Between #12/31/2004# And #12/31/2005#))
GROUP BY Format([StartDate],"mmm");
I want to order the results by month but when I try the list is in alphabetical order instead of month order. Can anyone help me?