Date Time Stamp in Table

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I have a field in my table called "Status' can I add another field to my
table that gives a date and time to when I changed the field in each record
in Status, [Status] being a text field options Active;Finished .........
thanks for any help with this..Bob
 
Yes, create another field, perhaps StatusDt

then in your form use the AfterUpdate event of the [Status] control to
update the [StatusDt] control's value with the current date and time

something like,

Me.StatusDt = 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