I have a procedure for selecting records if certain words are in the record. This works okay, producing a distinct list.
Now I need to show records that contain one or more words selected from the list, if records do not contain the words selected in the list, then they are not listed. Hope that's clear.
Existing code
Now I need to show records that contain one or more words selected from the list, if records do not contain the words selected in the list, then they are not listed. Hope that's clear.
Existing code
Code:
Dim strList1 As String, item As Variant
strList1 = ""
For Each item In Me.List3.ItemsSelected
strList1 = strList1 & Me.List3.ItemData(item) & ","
Next item
MySql = "SELECT DISTINCT MAIN.ID1, MAIN.QUESTION FROM MAIN INNER JOIN JUNCTION1 ON MAIN.ID1 = JUNCTION1.ID1"
MySql = MySql & " WHERE JUNCTION1.KeywordID IN (" & Mid(strList1, 1) & ")"
Me.List0.RowSource = MySql