Hi,
you would probably need to add you own navigation buttons.
If you use the command button wizard and select record navigation, then go to next record:
it will add code like this:
DoCmd.GoToRecord , , acNext
modify this code to do store the value before it goes to the next record, like this:
Dim value as string
value = Field2 (should be name of text box that holds field)
DoCmd.GoToRecord , , acNext
field1 = value
Hope this is what you want