Automatically populate a date field

Mark Drayton

New member
Local time
Today, 13:11
Joined
May 20, 2004
Messages
7
Hello!

I've searched on previous date questions but to no avail - so here goes...

I'm creating a issue/question logging Db with "Issue raised by" & "Issue Answered by" fields. I have set up a Combo Box on the "Issue Answered by" field listing names of people.

When a name is selected I would like the "Answered Date" field to be populated with the current date automatically.

My knowledge of Access is basic, so please be kind :)

Many Thanks

Mark

Access 97 :(
 
on the combo box's afterupdate event put this.

Me.AnsweredDate=Date()


the format is Me.[FormFieldName] where FormFieldName is what you named your answered date form field.
 
Thanks Kodo - it worked a treat! :)

Many Thanks

Mark
 

Users who are viewing this thread

Back
Top Bottom