automatically recording date

P

Patrick

In my form, I want to be able to have the date automatically entered for a
record, after a change or modification is made to an existing record.
 
D

Douglas J. Steele

Add a LastModified Date/Time field to your table.

In your form's BeforeUpdate event, add code to set that field to Now().
 
D

Douglas J. Steele

I don't think that's really what you want. That'll update the date every
time you access it, even if no change was made.
 
Top