I would like to filter my data with a text box. I want to find entries which have some numbers in common. So I want to type in something (let's say three numbers) in the text box and I want to find all records which have these three numbers in a specific column in common.
I have this code but I don't know how to use something like a wild card to filter and show the results in a list box
Code:
Dim int_WC As Integer
Me.txt_WC = int_WC
Me.lstbx_WC.RowSource = "SELECT WBS_element, Work_Ctr FROM Table1 WHERE " & Work_Ctr = "*int_WC" & ""
The column I want to filter is Work_Ctr