Better let my users know they can't be doing what they've been doing... <g>
You CAN run a query/report incorporating multiple selections from a list
box. You have to create the SQL statement of that query "dynamically",
however.
If you had, say, three items selected, your SQL statement might say:
WHERE ... AND (([YourField] = 7( or ([YourField] = 8) or ([YourField] =
9)) ...
or it could use:
WHERE ... And ([YourField] In (7,8,9))
Regards
Jeff Boyce
<Office/Access MVP>
Gee... said:
I understand that it's not possible to run a query using a multiple list
box.
I can achieve the same end by appending reports.
Is there a way to append reports?