Import the current date and time into the database through form

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

Guest

I have created a form for entering the information into the database table.
Meanwhile, I would like to use a column to capture the current "date and
time" when entering the form
 
do you mean you want to date/time "stamp" each record as it is created? if
so, you can open the table in Design view, add a field with a data type of
Date/Time, and set the field's DefaultValue property to

=Now()

hth
 
Back
Top