I have a parent form that that has a combo field that i want to have it look up and find a record in the sub form.
Can someone help me
Thanks
Code:
Private Sub List20_AfterUpdate() ' Find the record that matches the control. Dim rs As Object Set rs = qry_drawingdata.Clone rs.FindFirst "[drawingnumber] = '" & Me![List20] & "'" If Not rs.EOF Then Me.Bookmark = rs.Bookmark End Sub
Thanks
Comment