updating text field in a form

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

Guest

I'm attempting to update the date field to the current date if a record is
updated using a form. I'm not sure how to do it. Can you help?

Thanks.
 
jstp said:
I'm attempting to update the date field to the current date if a record is
updated using a form. I'm not sure how to do it. Can you help?


Use the form's BeforeUpdate:

Me.Datefield = Date
 
Back
Top