All four queries use the same prompt (for the same field): [Enter Patient
Contact ID]
How do I get only one prompt so that the keyed in patient contact id is used
for all four queries?
Make a form with a field or combobox to enter the ContactID.
Refer to the field in the criteria section of the queries like this:
=forms!FormName!FieldName
Add a button to the form to open the report.
--
Groeten,
In the criteria of the queries put something like this:
[Forms]![FormName]![TextBoxName]
You could put a command button on the form to run a macro that runs the
queries.
The form must stay open for this to work; however, it can be minimized or
invisible.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
You can also do this if your query/report contains multiple criteria
elements, for example: FiscalYear, Division, Dept, etc.
In the criteria it would look something like
[forms]![frm_ReportMenu]![FiscalYear]
Give it a try,
SteveD