Hi guys,
Quite a simple one I think (but evidently not simple enough!). I have a continuous form which displays records from a comments table, at present the form displays the oldest record at the top and the newest at the bottom. How would i go about reversing the order so the most recently dated comments appear at the top?
I inherited the db from another employee and there seems to be some pointless SQL scattered around the place, for example the code below was in the recordsource for the form, why not just set the table as recordsource? Am I missing something here?
SELECT Comments.[Cast ID], Comments.Comment, Comments.Author, Comments.Category, Comments.Date FROM Comments;
Many thanks in advance
Paul
Quite a simple one I think (but evidently not simple enough!). I have a continuous form which displays records from a comments table, at present the form displays the oldest record at the top and the newest at the bottom. How would i go about reversing the order so the most recently dated comments appear at the top?
I inherited the db from another employee and there seems to be some pointless SQL scattered around the place, for example the code below was in the recordsource for the form, why not just set the table as recordsource? Am I missing something here?
SELECT Comments.[Cast ID], Comments.Comment, Comments.Author, Comments.Category, Comments.Date FROM Comments;
Many thanks in advance
Paul