I have a list of birthdays that I want sorted January to December and if possible by day also ... so the birthdays are sequential. Year doesn't matter. I have done it before but can't remember what to do now.
Create a query where you take apart month and date with DatePart-function and then sort by month part and day part. Looks in SQL like this:<br>
<br>
SELECT YourBirthdayField, DatePart("m",[YourBirthdayField]) AS BirthMonth, DatePart("d",[YourBirthdayField]) AS BirthDate <br>
FROM [YourTable]<br>
ORDER BY DatePart("m",[YourBirthdayField]), DatePart("d",[YourBirthdayField]);<br>
<br>
Al
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.