opening multiple reports at once

  • Thread starter Thread starter Leslie Porter OHV
  • Start date Start date
L

Leslie Porter OHV

Is there an easy way to open multiple reports at once that use the same query?

i have 3 reports that all use the same query. Instead of entering criteria 3
times in a row it would be nice to enter it once and have all 3 reports come
up. Is this possible? And if so how?
 
Use a form to supply any criteria, and open the 3 reports from code. The
query should read the criteria from a form text box (or several) as in:

[Forms]![FormName]![txtMyTextboxName]
 
Awsome!!

Arvin Meyer said:
Use a form to supply any criteria, and open the 3 reports from code. The
query should read the criteria from a form text box (or several) as in:

[Forms]![FormName]![txtMyTextboxName]
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


Leslie Porter OHV said:
Is there an easy way to open multiple reports at once that use the same
query?

i have 3 reports that all use the same query. Instead of entering criteria
3
times in a row it would be nice to enter it once and have all 3 reports
come
up. Is this possible? And if so how?
 
Back
Top