Open your form in design view.
Then click View/Properties from the menu.
In the EVENT tab double click on the ON OPEN line. It should change to
[Event Procedure].
Click the elipse button [...] to the right of the "event procedure" and it
should open up the code window.
You should see a line that says ...
Private Sub Form_Open(Cancel As Integer)
and a line that says
Ens Sub
In between those two lines, paste the statement I gave you earlier. The
ends result should be...
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord,,acNewRec
End Sub
Then close the code window.
Close the properties box.
Close and save your form.
When you reopen the form, it should go to a new record.