How do I update a timestamp field when another field is updated

S

Swhite951

I need to update a date/time field (Completed Date/Time) when another field
(Completed?) has been entered. The entry field (Completed?) is a yes/no
click field. Once the field has been clicked on (yes) I then want the date
field updated with the date and time the clicked on field was entered.
 
D

Douglas J. Steele

Put code in the AfterUpdate event of the entry field to set the value of the
date/time field.
 
Top