To Save time I have:
Private Sub VatNumber_AfterUpdate()Me.VatNumber.DefaultValue = """" & Me.VatNumber.Value & """"
End Sub
This is in the Afterupdate of the control VatNumber
So when I click the button on the page:
Private Sub btnReviewVat_Click()
DoCmd.GoToRecord , , acNewRec
End Sub
I expect the field VatNumber to have the same value as the previous record so that I may adapt the associated fields accordingly.
This is all my code, but its not working, any ideas of what is stopping the new record from pulling the data through from the old record?