FILTER REPORT using FORM

A

amsuria

hi..
I have a "ReportGenerator" form in which I can filter Reports by different
attributes like "Report by Location" or "Report by Budget".

How can I filter the data in my "ProjectReport" report using the data i have
selected in the Report Generator form?

Let say I choose "LOCATION1" in my report generator, all projects in
LOCATION1 should be displayed in my PROJECTREPORT...

thank you in advance...

amsuria
 
T

Tom Lake

amsuria said:
hi..
I have a "ReportGenerator" form in which I can filter Reports by different
attributes like "Report by Location" or "Report by Budget".

How can I filter the data in my "ProjectReport" report using the data i
have
selected in the Report Generator form?

Let say I choose "LOCATION1" in my report generator, all projects in
LOCATION1 should be displayed in my PROJECTREPORT...

Make the Criteria in the query

=Forms![FormName]![ControlNameOnForm]

Of course you'd replace FormName with the name of your form and
ControlNameOnForm with the name of the control on your form
where you type the location.

Tom Lake
 
Top