-
...when I use the SQL statement--
"ORDER BY latest.Date DESC"
I certainly get my dates in decending order. But I've noticed that several records recorded on the same day aren't sorted with the most recent record being the first record. How can I use time to further sort decending dates by decending time?
-
Do you have a field called 'TIME'? If time is included in the Date field, it should do it automatically, unless you have your field as a text field and not a date field.....
If you have an autonumber field, you could also sort by that field, descending, because the most recent records will have a greater autonumber....
HTH
Tom
-
If multiple records have the same value and your sorting by that value, it's not defined in what order the records with the same value come back.
The best is, as Tom mentioned, to use an auto value.
Roger