parameter prompt box

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

I have a report generated from a parameter query based
on "Employee" and "Eval#". Is there a way to make the
prompt box have a drop down list or combo box to select
the Employee from?
 
Kevin,
No.
You'll need to make your own form and add the combo box to it.
Then, instead of something like:
[enter Client Name]
code the query criteria:
Forms!FormName!ComboName

Make sure the Combo Bound Column datatype is the same as the query column
datatype.
 
Back
Top