Same data in the next record

T

Tim

I need the ending reading in one record to = the beginning
reading in the next blank form
ending milage on the last form should = the beginning
milage reading on the next new record
Thanks
 
J

John Vinson

I need the ending reading in one record to = the beginning
reading in the next blank form
ending milage on the last form should = the beginning
milage reading on the next new record
Thanks

Put some VBA code in the AfterUpdate event of the [ending milage]
textbox on the Form:

Private Sub txtEndingMilage_AfterUpdate()
Me!txtBeginningMilage.Default = Chr(34) & Me!txtEndingMilage & Chr(34)
End Sub

using, of course, your own control names.
 

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