enter current date when "complete" is chosen from a combo box

J

John Vinson

On Wed, 27 Apr 2005 15:17:36 -0700, MarcTA

If you have a question, it's considered polite to ask it in the text
area, not just the subject line; provide enough context that a
volunteer here can make a reasoned reply.

At a guess, you can use the Combo Box's AfterUpdate event. Invoke the
Code Builder by clicking the ... icon; put in code like

Private Sub combobox_AfterUpdate()
If Me!combobox = "Complete" Then
Me!txtDateComplete = Date ' or Now for date & time
End If
End Sub


John W. Vinson[MVP]
 

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