Drop Down List on a Report

G

Guest

The user would like a drop down list on the report to select the specific
information and when selecting gives only that information on the report.
The report is pulled from one query. I have made a quick fix for this
utilizing the Like [Enter Org Unit] in the query field and this pulls only
that information into the report after the user types in the value. Is there
a way to place a drop down listing on the report? How do I go about doing
this? Thanks
 
B

benyod79 via AccessMonster.com

Can't do dropdown lists in reports.

Create a "report" form with a dropdown "OrgUnit" that lists the unique Org
Units. In the dropdown's afterupdate event, create an event procedure and
call the report using:

DoCmd.OpenReport "YourReportName", acViewPreview, , "[Org Unit] = '" & Me.
OrgUnit & "'"



The user would like a drop down list on the report to select the specific
information and when selecting gives only that information on the report.
The report is pulled from one query. I have made a quick fix for this
utilizing the Like [Enter Org Unit] in the query field and this pulls only
that information into the report after the user types in the value. Is there
a way to place a drop down listing on the report? How do I go about doing
this? Thanks
 

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