Populate data textbox field when data is entered in a separate textbox field

blatty

New member
Local time
Today, 05:42
Joined
Apr 4, 2007
Messages
4
I'm a novice using VB in Access, but know enough that I need it to accomplish this feature. Any help with this would be greatly appreciated.

table1 stores data for two textbox fields

form1 contains both textbox fields

field1 is blank (formatted as date field)

field2 has dated entered into it (formatted as a date field)

field1 is auto-populated with data from field2 after field2 is updated
 
on AfterUpdate event of of field2:

Me.field1=Me.Field2
 
Epic...

I had to switch it around to make it work for my example.


Me.field2 = Me.field1

Thanks
 

Users who are viewing this thread

Back
Top Bottom