Beginning Point

  • Thread starter Thread starter Russ
  • Start date Start date
R

Russ

I have a form where I enter in some information. When I open the form, I
would like the form to open up to either the last record or a new one. Right
now, the form opens up to the very first record. Thanks...
 
Create a macro called GoToLast. In the first line in the action column,
select GoToRecord. Below, select:
Object Type = Form
Object Name = the name of your form
Record = Last (or new).

Save the macro.

In the form's OnLoad event, select the name of the macro you just created.

Barry
 
Back
Top