Starting on a blank record rather than a previous record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Here is my problem: I have a subform where users go in monthly and enter data
so after 3 months there are 3 different entries, so there is now autonumber
1, 2, and 3. My question is when I open the form how do I get the form to
start on a blank entry rather than entry 1? I have tried using the "data
entry" property in the property box but I still want to be able to edit other
records so that does not work. Thanks for any help in advance.
 
Why use a macro? why not simply:

Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top