Replicating Data in Fields

G

Guest

I have a Simple form that my counselors use to request Records. The fields
are:

Region
WBN
Date of Collection
Donor Name
Mobile Code
Case ID
Staff Name
Date Needed

My problem is this; if a counselor needs 10 different records for one donor,
they have to complete the form 10 times. Completing each field over and over
again. I want to know if it is possible to retain the information from the
previous entry for the counselor and just change the fields that require
changing; i.e., WBN, Date of Collection.

Any help on this would be GREATLY appreciated.
 
J

John Vinson

I have a Simple form that my counselors use to request Records. The fields
are:

Region
WBN
Date of Collection
Donor Name
Mobile Code
Case ID
Staff Name
Date Needed

My problem is this; if a counselor needs 10 different records for one donor,
they have to complete the form 10 times. Completing each field over and over
again. I want to know if it is possible to retain the information from the
previous entry for the counselor and just change the fields that require
changing; i.e., WBN, Date of Collection.

Any help on this would be GREATLY appreciated.

Use the AfterUpdate event of each control which you want to have
autoduplicated. Click the ... icon; invoke the Code Builder; Access
will give you the Sub and End Sub lines, just add one more:

Private Sub WBN_AfterUpdate()
Me!WBN.DefaultValue = Chr(34) & Me.WBN & Chr(34)
End Sub


John W. Vinson[MVP]
 

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