Reports and sub reports

G

Guest

I have several sub reports put into one report. They are all based off of the
same select query. The select query requires that I enter the criteria before
it runs. When I run the report it makes me input the same criteria for each
page of each sub report. So I end up entering the same data a bunch of times
to generate each page of the report?
 
D

Duane Hookom

Don't use parameter prompts in your queries. Use references to controls on
forms in the criteria.
 
G

Guest

I appreciate your help but I am not sure I understand it. My data is relative
to football plays and teams, I am trying to pear down the data to display
only one team in the report.
 
D

Duane Hookom

Then create or use and existing form where the user selects a team. Assuming
you have a form named "frmRptSelect" with a combo box to select the team
"cboTeamID". You would set the criteria in the report's record source query
to:

Forms!frmRptSelect!cboTeamID

Parameter prompts are very poor in terms of flexibility, functionality, and
friendly user interface. Don't use them.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top