Zinkey
You are nearly there! When you are viewing the events tab of the property sheet, you can't just paste my code directly in as Access then thinks it is the name of a macro, hence the error. Here's what to do:
Delete the code you have pasted into the OnOpen line, then click the build button to the right of the line- the one with 3 little dots in it. Select Code Builder and you will end up with the code screen, with an event already created- starts Private Sub and ends End Sub. You need to paste my code in between these two lines so it looks like this:
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec
End Sub
now save and close the code window and give it a try...
hth
Nigel