Hi
I have a combo box that filters a contacts form depending on what is selected from the list. The list works on surname. Everything works fine until there are more than one surname the same. For example:
Bloggs J
Bloggs B
When I select Bloggs J or Bloggs B it only ever filters to Bloggs B
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Surname] = '" & Me![Combo99] & "'"
Me.Bookmark = rs.Bookmark
DoCmd.GoToControl "Title"
Can anyone help please?
I have a combo box that filters a contacts form depending on what is selected from the list. The list works on surname. Everything works fine until there are more than one surname the same. For example:
Bloggs J
Bloggs B
When I select Bloggs J or Bloggs B it only ever filters to Bloggs B
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Surname] = '" & Me![Combo99] & "'"
Me.Bookmark = rs.Bookmark
DoCmd.GoToControl "Title"
Can anyone help please?