Date last modified for a field

  • Thread starter Thread starter jhicsupt
  • Start date Start date
J

jhicsupt

I have a field "EETitle". I need to track the last date updated. How would
I do that? Thanks in advance.
 
jhicsupt,

You'll need to add a Date/Time field to your table, (ex. EETitleDOLE).

Use the AfterUpdate event of EETitle to trigger the code...
Me.EETitle = Now()
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
So where is the modified date stored? If I use the Afterupdate in the
Me.EETitle field, how does it get to EETitleDOLE?
 
jhicsupt,Include that field in the query behind the form.
Place that field on your form. In other words, a text control with a
ControlSource of EETitleDOLE.
That textControl is now "bound" to the EETitleDOLE field of your
table... and any value you give it will be stored in the table, in that
field.
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 

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

Similar Threads

Date last filled... 18
Conditional Calculated Field 0
Validation in child form 1
Pop-up Box with a reminder 1
Date Increase 1
Count Years 5
Date base on a yes or no Dropdown 1
Date Picker Default? 1

Back
Top