Filter Records based on Combo Box selection

A

Ashby

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
 
Top