use the current event of the subforms to do a find in the recordset of the
other subform. If you do this with both subforms then they will stay in
sync:
open each subform in design view and code like so:
Private Sub Form_Current()
Dim rs As DAO.Recordset
Set rs = Forms!FormName!SubformControlName.RecordsetClone
rs.FindFirst "[Service] = " & Me.Service
If Not rs.NoMatch Then Forms.Information.Bookmark = rs.Bookmark
rs.Close
End Sub
replace the FormName and SubformControlName accordingly. Also Service will
be the unique indentifier for each recordset that the subforms have in
common.
HTH
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.