I would really appreciate some help with a problem that I'm having.
I have a search form that has a combo box which a user selects a name from and that opens a results form with the data from that client.
Everthing works fine except that whatever name you choose from the combo box always opens the first record and not the selected one. My code for combo box On Change is
DoCmd.OpenForm "ResultsFrm", _
WhereCondition = "RecipientsName = " & Nz(Me.RecipientsName, 0), _
WindowMode:=acDialog