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

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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
 
Back
Top