It's a single form. New record button is custom, it copies some of the data that we want to stay the same until changed by the user.
Code:
Dim subdate As String
Dim galleytype As String
Dim custtype As String
Dim storenum As String
Dim Salesperson As String
Dim addate As String
subdate = Me.Entry_Date
galleytype = Me.Galley
custtype = Me.Type
storenum = Me.Store
Salesperson = Me.Salesperson
addate = Me.Sale_Date
DoCmd.GoToRecord , , acNewRec
Me.Entry_Date = subdate
Me.Galley = galleytype
Me.Type = custtype
Me.Store = storenum
Me.Salesperson = Salesperson
Me.Sale_Date = addate
Me.Title.SetFocus
Now it's obvious as to why that record gets created...