Private Sub MoveToMain()
Me.Parent.FNAME = NAME
Me.Parent.LNAME = LNAME
Me.Parent.ADD = ADD
Me.Parent.[ADD 1] = [ADD 1]
Me.Parent.[ADD 2] = [ADD 2]
Me.Parent.PLACE = PLACE
Me.Parent.PIN = PIN
Me.Parent.DISTRICT = DISTRICT
Me.Parent.STATE = STATE
End Sub

I have written the above code to transfer fields from subform to main form. This transfer takes place when I click a field on the subform. But I want to ensure that the transfer is to a new record on the main form. It should not overwrite old records on the main form. How to achieve it?