Next record update from current record

T

Thomas Simsion

I have a form that has a record next service date I want the next record to
use the data in the field current service date. I.E. Current service date is
picked up from previous record next service date Can anyone help with an
example.
 
P

PC Datasheet

Put the following code in the AfterUpdate event of the service date textbox:

Me!NameOfServiceDateTextBox.DefaultValue = Me!NameOfServiceDateTextBox
 
T

Thomas Simsion

What have I done wrong
Private Sub ServiceDate_AfterUpdate ( )
Me!ServiceDate.DefaultValue = Me!Link From Outher Control
Link From Outher Control Goes into the Previouse record Labeled Next Service
date.
 

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