Access Date/Time

  • Thread starter Thread starter Joe Sutphin
  • Start date Start date
J

Joe Sutphin

Is there any way to know the date/time a record was added to a table? Does
Access have some sort of hidden value a user can query to ascertain the
information? TIA.
 
Joe

Open the table in design mode. Add a DateCreated (date/time) field. Set
the Default property of that new field to:

=Now()

Everytime a new row is added, the DateCreated will be populated.
 
That's a good tip, but what about records that already exist? I need to know
when they were added.

Joe
 
That's a good tip, but what about records that already exist? I need to know
when they were added.

If you weren't recording it at the time the record was created, there
is literally no way on Earth to know. That information is not recorded
anywhere in Access.
 
The only way is to use a form to update the table, and set the field's value
in the Before_Update event.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top