Error 3070 the microsoft office access database engine does not recognize ID as a valid field name or expression. I get this error, but I've used the same code for other databases. Can anyone help? It's for a simple combo box:
Private Sub Combo11_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo11], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Thanks!