mizenerman
MIS
I'm desperate so I apologize if this post is redundant and any help is much appreciated. I have a combo box that is based on a query. The query looks up the "Last name" and "First name" of the form's source table then it finds the record and bookmarks it:
Dim MyRecSet As Object
Set MyRecSet = Me.Recordset.Clone
MyRecSet.FindFirst "[Last name] = '" & Me![Combo177] & "'"
Me.Bookmark = MyRecSet.Bookmark
The user then selects the appropriate listing from the drop down and it works beautifully. The problem is that there can be multiple entries in the table that have the same "Last name". If the user selects an entry with the same last name but different first name it only finds the first entry of the last name. Not surprising since the code is telling it to do just that. How can I get the FindFirst to look at the First name field too? Again, your help is much appreciated.
Dim MyRecSet As Object
Set MyRecSet = Me.Recordset.Clone
MyRecSet.FindFirst "[Last name] = '" & Me![Combo177] & "'"
Me.Bookmark = MyRecSet.Bookmark
The user then selects the appropriate listing from the drop down and it works beautifully. The problem is that there can be multiple entries in the table that have the same "Last name". If the user selects an entry with the same last name but different first name it only finds the first entry of the last name. Not surprising since the code is telling it to do just that. How can I get the FindFirst to look at the First name field too? Again, your help is much appreciated.