Can someone tell me how i would use the ORDER BY code to show data in a table using more than one criteria ie:
Code:
sql="SELECT * FROM AbsenceServicesQuery WHERE newDate BETWEEN #" & StartDate & "# AND #" & EndDate & "# ORDER BY ""newDate"", ""dept"" ASC "
right now i am ordering my results by 'newDate', but i also want to have it ordered secondarily by 'dept'. I tried the above, but it doesnt work
thanks