Hi Ken,
You can't use the list box the way you have mentioned. You must iterate thru the ItemsSelected collection to get all the values.
You could write a public function as below:
Public Function getCriteria() as String
dim x as variant
dim str as string
str=""
For each x in [Forms]![yourFormName].List1.ItemsSelected
str=str & [Forms]![yourFormName].List1.Column(0,x)
Next x
getCriteria=str
End Sub
In the query criteria, you could use
In getCriteria()
I have not tried this code but hope this helps. Let me know what happens.
With regards,
PGK