auto update

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

Guest

does any one know how i can make it so that when a number (15) is inserted into a field in column A, the corresponding field in
column B always enters the date that the certain # was entered into column A.
or a good tutorial will help
im using access 2000 and the generel date/time format
thanks
 
Assuming you are using a form to enter the data and that the names of your
controls and fields are what you listed in your post:

Private Sub columnA_AfterUpdate()
If Me.columnA = 15 Then
Me.columnB = Date
End If
End Sub


--
Reggie

----------
does any one know how i can make it so that when a number (15) is inserted
into a field in column A, the corresponding field in
 

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

Back
Top