How do I get my names from a combo box to display on a report. ON.

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

Guest

How do I get my names from a combo box to display on a report. Only the ID#
are displaying in the report.
 
The same way that you got them to show on the form. Change the row source
to include the names column and hide the hide column.

Or

Just add the names as new field to the reports recordsource, and display in
the report instead of the ID column.
 
How do I get my names from a combo box to display on a report. Only the ID#
are displaying in the report.

Base the Report on a Query joining its table to the name table, and
select the name rather than the ID field.

John W. Vinson[MVP]
 
Back
Top