GeorgeS
03-23-2005, 05:30 AM
When you start access it usually starts at the beginning of the file. How can I make it start at the last entry?
|
View Full Version : starting access at the last record instead GeorgeS 03-23-2005, 05:30 AM When you start access it usually starts at the beginning of the file. How can I make it start at the last entry? neileg 03-23-2005, 06:39 AM The concept of first or last in a table is not really relevant, since the position of a record is not significant. By using a query, you can apply any sort order you like, and apply it to whatever field will give you the position you want. For instance if you have an autonumber field, this will normally indicate that the largest autonumber is the most recent record. So a descending sort based on this field will give you the most recent record first. |