VBA related

  • Thread starter Thread starter Athena
  • Start date Start date
A

Athena

Hi,
i just need a line of code which will allow me to move to
an empty record in a table, all the MoveNext etc functions
only work on data already there

thanks.
 
Hi,

I assume you want to go to a new record in a form, if this is the case, the
following would apply:

DoCmd.GoToRecord , , acNewRec

hth

Mark

This information is provided "as is" and expresses no warranties or confers
no rights
 
hi,

It's actually attempting to add a new record to a table,
which can then be used to produce a report
 
Back
Top