So I am trying to figure out what I am doing wrong, I have a table I am trying to run a query which asks the user if they have a specific district they are looking for....
so my columns are
name    district   etc
Jay       1
Tom       3
Mary      5
Tim       5
Mike      15
I am trying to be able to have a parameter [which district?:] 1,5 .. It would display
Jay      1
Mary     5
Tim      5
Code:
WHERE 
    [District] Like "*" & [What District(s)] 
    & "*" OR [What District(s)] Like "*" & [District] & "*"
but I am getting
Jay       1
Mary      5
Tim       5
Mike      15
I am trying to avoid getting the "15" record.