I assume that you want to pass the filter from the list box to the form that
you want to open, if that the case, on the DoubleClick event of the list box
you can write the code
Dim MyCondition As String
MyCondition = "[FieldNameInTableToFilter] = " & Me.[ListBoxName]
Docmd.OpenForm "FormName" , , ,MyCondition
=====================
If the field you want to filter is a text type, then change the criteria to
MyCondition = "[FieldNameInTable] = '" & Me.[ListBoxName] & "'"
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.