Date

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

Guest

I am a little new to Access.

I have a form and on that form I have a field called "Date Updated". I will
like this field "auto populated" with the system date when the user updates
the record they are on.

Can someone help?

Thanks !!
 
Ty said:
I am a little new to Access.

I have a form and on that form I have a field called "Date Updated".
I will like this field "auto populated" with the system date when the
user updates the record they are on.

Can someone help?

Thanks !!

In the BeforeUpdate event of the form...

Me![Date Updated] = Date()

(or if you want the time as well)

Me![Date Updated] = Now()
 

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