- If you JUST want to enter data, and don't want to even see old
records, set the DataEntry property of the Form to True.
- If you want to default to entering new records, but still want the
ability to scroll back and see old ones, put the following VBA code in
the Form's Open event (by viewing the form's properties, finding the
Open event on the Events tab, clicking the ... icon and choosing Code
Builder):
Private Sub Form_Open(Cancel as Integer)
DoCmd.GoToRecord acNewRecord
End Sub