Tammy,
What happens when the checkbox is unchecked (False)?
I'll assume you want the date field nulled out...
Use the AfterUpdate event of your checkbox (ex. chkExample) to
update the date field (ex. ExampleDate) (you use your own object names)
Private Sub chkExample_AfterUpdate()
If chkExample = True
ExampleDate = Date()
Else
ExampleDate = Null
End If
End Sub
Note: If you need the Date and Time in ExampleDate, use...
ExampleDate = 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."
"Tammy S." <(E-Mail Removed)> wrote in message
news:F3AE64D4-0068-4B21-A6D5-(E-Mail Removed)...
>I have check boxes and a date field for each box. When the box is checked,
> I'd like to corresponding date field to automatically enter the current
> date.
> How can I do this?