Limiting Choices in a Combo-box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to find out how I would limit the selections on one combo box,
based on a previous selection from another box. I want the user to select a
county and in the next box, only the cities in that county to show. I can't
remember how it's done.
 
Do a search. Asked and answered all the time. Look for "cascading combo".

Rick B
 
Under "Data" you can use a query to define the "Row Source" values for the
combo box by setting criteria in the query limit based on the county.

For instance your criteria may look something like this.

IIF(Form![Formname]![Combobox1] isnotNull, Form![Formname]![Combobox1],
Table![Counties]

Define Counties as your first column and Cities as your second coloum. Then
you will need to change the "Bound Column" and under "Format" change "Column
Count" and "Column Widths"
 

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

Back
Top