Duplicate previous row's data in next record

G

Guest

Each record starts with an Autonum Id Field which is incremented by one; ten
fields follow. I need a control button on my data entry form to add the row
of data; then start a new record by incrementing the first Autonum Id Field
and duplicating all remaining fields with the same values from the previous
record. Any suggestions?
 
G

Guest

JJF,

One day to do is is to set the DefaultValue property of each field in its
AfterUpdate event:

Me!YourControl.DefaultValue = Me!YourControl

Sprinks
 

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