Hi All - wondering if anyone can help.
I've got a form used for data input. I want a user to be able to input the data on Form 1, and then click a button to "Save and Open" the record in another form (Form 2) (which contains different options/data).
At present I've got the button on the form, and when a user clicks the 'Save and Open' button - it loads my Form 2 - but doesn't jump to that record.
The code i have is:
Can anyone help?Code:Private Sub btnSaveOpen_Click() DoCmd.Save DoCmd.OpenForm "frmViewIssue", , , "[ID] = " & Me.ID Me.Requery End Sub
Many thanks,
Leigh