How set up automatic date population when new record received

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm fairly new to ACCESS (and not very knowledgable in it's technical
aspects). Can someone please give me advice on how to create a field in an
ACCESS database (table) that will automatically register the current date
when a new record is posted to the database (that is, the date that the
posting of the new record took place). Is it a field on the table? Or, some
other programming? Thanks...
 
You can set a default value of a field to either Date() or Now(). The Now()
function returns date with a time element. When a new record is added to the
table, this field will default to the current date or date and time.
 
Back
Top