Is it possible to setup a parameter query where the parameter is a combo
box?
ie. A query for sales where the parameter is a dropdown list from another
table.
What you need to do is create a small unbound Form, frmCrit let's call
it, with the combo box (and controls for any other desired criteria).
Let's say you have a combo box cboCustomer.
Your Query would use
=[Forms]![frmCrit]![cboCustomer]
as the criterion. Form frmCrit must be open at the time the query is
run; it's convenient to base a Form (for onscreen display) or a Report
(for printing) on the query, and put a command button on frmCrit to
open said form or report. There's no need to open the query datasheet
at all.
John W. Vinson[MVP]