If you ONLY want to see the new record (and those records entered
during the time the form has been open, but no older ones) set the
Form's DataEntry property to True.
If you want to jump to the new record but still be able to browse
through existing ones you'll need just a single line of VBA code: in
the Form's Load event put
Private Sub Form_Load(Cancel as Integer)
DoCmd.GoToRecord,,acNewRecord
End Sub