Select Question

A

Anthony

In a query you can enter =[Enter Station] so that it lets you enter data, is
their anyway I can put a command in their that would give me a grop down box
to pick what I want.

Thanks
 
A

Allen Browne

No. The query parameter dialog cannot give you a combo.

You can create a form with a combo, and then refer to it in your query. You
would type something like this in the Criteria row under the relevant field:
[Forms].[Form1].[Combo0]

Provided the form is open, the query will then read the value from the combo
on the form.
 
Top