Texsun50
Your situation is different from that by aggregate.
If all you are changing in the report is the County, you only need one report and one query.
You can accomplish that in two different ways...
Method One
In your query, in the criteria for the County column, put [Select County]. Now when you run the report, it will automatically ask you for the County for which you want a report.
Method Two - better and more flexible in the long run
1. Create an unbound form. Let's call it frmSelectCounty
2. On the form put one unbound text box. Let's call it txtCounty
3. On the form, put a command button (use the wizard) to run the report in either Preview or Print mode.
4. In the query, in the criteria for the County column, put
Forms!frmSelectCounty!txtCounty
Now you run everything from that form. You open frmSelectCounty, enter the desired country in the text box called txtCounty, press the command button and here comes the report.
Tom