Using a combo box to open a report

  • Thread starter Thread starter seg42
  • Start date Start date
S

seg42

I'm running into a problem, where from a main menu form, I need to have a
combo box where a user can select a record from another form and print a view
it's report. Help?
 
How far have you gotten? BTW: records are stored in tables, not forms. You
can use a table or query as the Row Source of your combo box. You can then
use the selected value of the combo box in a where condition of the
DoCmd.OpenReport method.

If you still have questions, you can search google groups *Access.Reports*
for my name and the phrase:
strWhere = "1=1 "
 
Back
Top