Copy data from one field to another

G

Guest

I have a form called participant. I data enter a date into a field called
StartDate. I would like to have that same date automatically be set as a
default in another field called InitialContactDate.

Can it be done and if so how?

Thanks.

JoeP
 
D

Douglas J. Steele

For the AfterUpdate event of the field, put code like:

Private Sub StartDate_AfterUpdate()

Me!InitialContactDate = Me!StartDate

End Sub
 

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

Top