Dear all
I've made a form and i would like it to show the last record that user
input.
How can i do that
Eric
Access does not record or care about the order in which records are entered. A
table is an unordered "heap" of data - what you ask is sort of like asking to
see the last potato that was thrown into the bin! Sure, it might be on top
(last in the recordset) but it might have bounced (Access might have had a
vacant spot on disk that needed filling).
If you want to keep track of the order of record entry you need to have a
field in the record which notes that - either a sequential autonumber or a
date/time field with a default value of Now(). If there are multiple users
updating concurrently and you want to go back to the last record that *this
user* entered you will also need to record the user's identity.