I have a form with a sub-form on it. The sub-form is displayed as a data-sheet grid. When the user opens the form with the sub-form, I want the sub-form to be positioned at the last record.
I tried the following in the sub-form:
That did not appear to do anything. When I tried placing it in the form_load event, I get an error message - form not loaded.
I tried the following in the sub-form:
Code:
Private Sub Form_Activate()
DoCmd.GoToRecord , , acLast
End Sub