How do I keep the same data from one record to the next record, i.

G

Guest

I am working on an Access 2000 form (with record selector capability) that
has a calculated text box. When I click the record selector for the next
record, I want the calculated text on this new record to conatain the data
from the previous record.

How can I carry over the data from one record to the next?
 
G

Guest

Marion Stokes said:
I am working on an Access 2000 form (with record selector capability) that
has a calculated text box. When I click the record selector for the next
record, I want the calculated text on this new record to conatain the data
from the previous record.

How can I carry over the data from one record to the next?

try:
Me.YourControlName.DefaultValue = Me.YourControlName

in the AfterUpdate event of the Control.

-Amit
 

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