How do I get all columns in a combo box to appear on a report?

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

Guest

I'm really having difficulty tyring to figure out combo boxes and how to have
all columns apear in a report., i.e., Account Number and Account Description.
My combo box shows both columns but I can't get both colums to appear on a
report?
 
Peg,

Even though it is theoretically possible to place a combobox control on
a report, comboboxes are normally not really appropriate for a report.
A better approach would be to make a query that contains all the data
you want on the report, i.e. it will include the Account Number and
Account Description fields, and then base your report on this query,
with these fields represented on the report by textboxes.
 
Back
Top