Need help producing reports

G

Guest

Here is the scenario:
I have a contracts database. I need to have reports done where I can choose
a vendor from a dropdown menu and get a report showing which contracts they
have had with us. I am using Access 2007 running on Windows XP. I have two
databases (1) Vendor name and contact info and (2) all contracts with
vendaors, dates, costs, descriptions, etc. Any ideas how I can get this
done?
 
M

Mark Andrews

Sounds like a pretty standard type of report senerio.

have a form with a combobox, the combo box should have two columns:
- vendorID (hidden)
- vendorname (shown to user)

in the query that drives the report use
Forms!frmMyFormName!MyComboBoxName in the WHERE clause to restrict the
query to only return contracts for that particular vendor.

You can also refer to the same combobox on the report itself
for example have a subheading ="Vendor: " &
forms!frmMyFormName!MyComboBoxName.Column(1)

HTH,
Mark Andrews
RPT Software
http://www.rptsoftware.com

PS: Send me an email if you need any additional help.
 

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