L
Limp Arbor
I have an database (A) that allows users to lookup information and
print reports. In a different database (B) I have a historical
report.
The report in database B has a query behind it that is based on a
value from a combo box on a form. The relevant portion of the query
is:
WHERE (((HEADER.doedista)=[Forms]![Main]![districtpicked]))
Is there a way I can open the report in database B from database A by
passing the value for [districtpicked]?
If not, I could make a copy of the report in B and have it based on a
different query but I would still need to either pass the value to the
query or change the query by updating the SQL and changing this line:
WHERE (((HEADER.doedista)="MyValue")).
My objective is not to copy the report, query and underlying tables to
A even though that would probably take less time than the above
options. The data for the report in B is static and does not change.
Any advice is would be appreciated
print reports. In a different database (B) I have a historical
report.
The report in database B has a query behind it that is based on a
value from a combo box on a form. The relevant portion of the query
is:
WHERE (((HEADER.doedista)=[Forms]![Main]![districtpicked]))
Is there a way I can open the report in database B from database A by
passing the value for [districtpicked]?
If not, I could make a copy of the report in B and have it based on a
different query but I would still need to either pass the value to the
query or change the query by updating the SQL and changing this line:
WHERE (((HEADER.doedista)="MyValue")).
My objective is not to copy the report, query and underlying tables to
A even though that would probably take less time than the above
options. The data for the report in B is static and does not change.
Any advice is would be appreciated