I am haveing a problem getting FindFirst to work with a text field. I have an inventory table that has a numeric ID field and a description. I want to be able to use a combo box using the invdesc and FindFirst. Here is the code I am using:
Private Sub cmbSKUDescription_AfterUpdate()
Dim rst As Recordset
Set rst = Me.RecordsetClone
rst.FindFirst “tblinventory.invdesc = ‘ ” & Me![cmbSKUDescription] & “‘”
If Not rst.NoMatch Then Me.Bookmark = rst.Bookmark
End Sub
I am not getting errors, it just doesn’t work. I am using DAO and Access 2000