Using Access 2007.
I am trying to use a combo box (based on a query) to navigate to the first occurrence of a record in a form.
The query is using a date selected in another control on the form to filter the list of items in the combo box.
That seems to be working.
However when I select an item in the list I get a syntax error. What am I missing here?
Here is a snippet of the code:
Sub cboMRN_AfterUpdate()
Dim rst as recordset
Set rst=me.RecordsetClone
rst.FindFirst "strMRN = " & cboMRN.Column(2)
Set rst= Nothing
End Sub
Thanks in advance for your help