I have a simple contact database with one table. Form one shows contact information, website, facebook, etc. I made a second form for additional information so the first form wasn't too crowded. All fields from both forms are in the one table. To go from form 1 to form 2 I have a button with the following code:
Private Sub Questions_Click()
DoCmd.OpenForm "Questions", acNormal
DoCmd.Close acForm, Me.Name
End Sub
When I enter values into form two they remain for all records in form one. The values should be specific for each recordset in form one. Am I missing something to link the two forms together?