Dear All.
Could you please resolve me this issue?
To simplify I have table with 4 fields.
I have filled them with different data. For example:
in Region in first field: "UK", "US", "France". In second field: "UK", "France".
in Model in first field "A1", "A2", "A3". Ind second field "A2", "A3". I hope you get it
Now i have two forms. One for data search and other which is displaying result. If I want to search in fields which don't have allowed multiple values then i use this code:
But when I want to search in fields which have allowed multiple values in them, then this code don't work. How should I proceed? How can I find for example records which have in Model field value "A2"? Or in Region field value "France".
Could you please resolve me this issue?
To simplify I have table with 4 fields.
- IssueID
- Model (Combo Box ; Table/Query ; Allow multiple values - Yes)
- Region (Combo Box ; Table/Query ; Allow multiple values - Yes)
- Remark
I have filled them with different data. For example:
in Region in first field: "UK", "US", "France". In second field: "UK", "France".
in Model in first field "A1", "A2", "A3". Ind second field "A2", "A3". I hope you get it

Now i have two forms. One for data search and other which is displaying result. If I want to search in fields which don't have allowed multiple values then i use this code:
Private Sub but_Search_Click()
condi = "1=1"
If Len(Me.Issue_ID.Value) > 0 Then
condi = condi & " AND [Issue ID] = '" & Me.Issue_ID.Value & "'"
End If
DoCmd.OpenForm "FOR_TAB_CAMP", acNormal, , condi, acFormEdit, acWindowNormal
End Sub
But when I want to search in fields which have allowed multiple values in them, then this code don't work. How should I proceed? How can I find for example records which have in Model field value "A2"? Or in Region field value "France".