1: 2: 3: 4: 5: 6: 7: 8:
Private Sub Combo144_AfterUpdate() ' Find the record that matches the control. Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[fld_JobNumber] = " & Str(Nz(Me![Combo144], 0)) If Not rs.EOF Then Me.Bookmark = rs.Bookmark End Sub