drop down list

G

Guest

on a startup form I want to create a button that will let you choose from a
drop down list and when you click on that choice, it will run the query?

I have a list of departments (15), Information & Techonology, Administrative
Services - Fiscal (example) (long names) and if I have a parmeter set up to
Enter the name and part of it is left out or misspelled it will not run. I
just want the user to click on a drop down arrow and choose the department
and then the query will run. Thanks
 
F

fredg

on a startup form I want to create a button that will let you choose from a
drop down list and when you click on that choice, it will run the query?

I have a list of departments (15), Information & Techonology, Administrative
Services - Fiscal (example) (long names) and if I have a parmeter set up to
Enter the name and part of it is left out or misspelled it will not run. I
just want the user to click on a drop down arrow and choose the department
and then the query will run. Thanks


Add a combo box to your form that will show the Department field.
Make sure the Combo Box Bound Column is the
same DataType as the Department field.

Add a command button.

Code the button's Click event:
DoCmd.OpenQuery "QueryName"
DoCmd.Close acForm, Me.Name

Name this form "ParamForm"

Code the Query Department field criteria line:
forms!ParamForm!ComboBoxName

Open the form.
Find the Department in the combo box.
Click the command button.

The query will display just those records selected.
The Form will close.
 

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

Similar Threads

Drop Downs 1
filtering one drop down to another drop down 5
Drop Down List 2
Drop Down List 2
drop down list 1
Report list in a drop-down box 8
drop down selection 1
Drop Down in Form View 3

Top