I’m using the following code to go to the selected record but it doesn’t work. Since the field tnCMNum is a text field, do I have all my double quotes & single quotes right? Or is something else amiss?
Private Sub cboCustNum_AfterUpdate()
Dim rst As Recordset
Set rst = Me.RecordsetClone
rst.FindFirst “tblTaxNumbers!tnCMNum = ‘ ” & Me![cboCustNum] & “‘”
If Not rst.NoMatch Then Me.Bookmark = rst.Bookmark
End Sub