View Full Version : Storing the Date the Record was entered into a table


landerson
06-27-2006, 08:31 AM
Hello everyone. I am wanting to store the date the record was entered into the table. But I don't want the users to have to type this in; I thought that Access could grab the date from the system date.

I am new to this and I looked at the Date function but I am thinking it will just always update to the current system date.

Thank you very much if anyone could point me in the right direction.

Malcy
06-27-2006, 08:50 AM
Add a field dtmRecAdded and set it to date format with the default value being Now()
Every time a new record is added it will catch the date and time
Hope this helps

neileg
06-27-2006, 08:53 AM
In the default value property of the field enter =Date()

landerson
06-27-2006, 09:08 AM
Thank you very much everyone. It worked. :)