Filtering using Combo Box

J

Jim Kennedy

Try something like this in the after_update event of your
combobox:

Me.Filter = "YourField ='" & Me.ComboBox & "'"
Me.FilterOn = True

Please note that the single quotation marks are not used
if this is a number field.
 
Top