C CAT Aug 15, 2003 #1 Can anyone tell me how to filter a form's records based on an option chosen from a combo box?
A Ashby Aug 15, 2003 #2 This assumes you already have a combo box and the bound field is numeric and it is also the primary key. On the combox "AFTERUPDATE" event insert this code: Me.RecordsetClone.FindFirst "[YourPrimaryKey] = " & Me! [YourComboBox] Me.Bookmark = Me.RecordsetClone.Bookmark
This assumes you already have a combo box and the bound field is numeric and it is also the primary key. On the combox "AFTERUPDATE" event insert this code: Me.RecordsetClone.FindFirst "[YourPrimaryKey] = " & Me! [YourComboBox] Me.Bookmark = Me.RecordsetClone.Bookmark