I wasn't too sure where to put this. Sorry!
I'll try to explain my situation as best I can.
I have a "Processor" report that gets its info from a query named "qry_OUT_Date&Processor" (The query below)
The query looks like this:
SELECT Outprocessing.Employee, Outprocessing.[Account#], Outprocessing.Date, Outprocessing.Reviewer, Outprocessing.Comments, Outprocessing.Sub_sent_per_delivery_ins, Outprocessing.ACRM_updated
FROM Outprocessing
WHERE (((Outprocessing.Employee) Like "*" & [Processor Name:] & "*"
AND ((Outprocessing.Date) Between [Forms]![Menu]![txtLA_PRfrom] And [Forms]![Menu]![txtLA_PRto]));
As you can see, the query is pulling the name from a popup box, and the dates from 2 text boxes.
I have a list box setup with an extended Multiselect, that contains employee names. What I would like to do, is when a user clicks the command button that executes the report(and this query) I would like it somehow to cycle thru the names on the list and bring up a new “Processor” report for each selected employee.
Could someone offer some guidance?
Thanks in advance!!
I'll try to explain my situation as best I can.
I have a "Processor" report that gets its info from a query named "qry_OUT_Date&Processor" (The query below)
The query looks like this:
SELECT Outprocessing.Employee, Outprocessing.[Account#], Outprocessing.Date, Outprocessing.Reviewer, Outprocessing.Comments, Outprocessing.Sub_sent_per_delivery_ins, Outprocessing.ACRM_updated
FROM Outprocessing
WHERE (((Outprocessing.Employee) Like "*" & [Processor Name:] & "*"
As you can see, the query is pulling the name from a popup box, and the dates from 2 text boxes.
I have a list box setup with an extended Multiselect, that contains employee names. What I would like to do, is when a user clicks the command button that executes the report(and this query) I would like it somehow to cycle thru the names on the list and bring up a new “Processor” report for each selected employee.
Could someone offer some guidance?
Thanks in advance!!