I have a combo box set up to find records on a form which was set up using the combo box wizard. The form also has on it an option group that filters the records depending on the option chosen: Active Members, Inactive Members or All Members. This is a checkbox field on the form. My problem is how do I get the recordset in the combo box to reflect the filtered recordset in the form since one only wants the drop down list to reflect choices currently available and the combo box is currently showing all records in the underlying query, not the filtered group. Here is the code from the AfterUpdate event of the combo box.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst “[FAMILYNAME] = ‘” & Me![Combo50] & “‘”
Me.Bookmark = rs.Bookmark