Automatic Date linked to another field being entered

  • Thread starter Thread starter Trey
  • Start date Start date
T

Trey

Is there a way to setup a date field that will
automatically enter the date when any information is
entered into a field next to it?
 
assign an after update event to the field you want to trigger on and code
like this:
control_to_setvalue_in.value = date( ) or any date you want

grtz
 
If you're talking about doing this in a table, the answer's no. If you're
using a form to update the table, chriske911's solution should work.
 
Thanks so much! Worked great!
-----Original Message-----
Yes, but you haven't qualified your question enough to know exactly what you
are trying to do. What I think you want:

In the AfterUpdate event of the field in which data is being changed

me!MyDateTextBox=Now()

hth
--
-Larry-
--




.
 
Back
Top