Field name in report title

  • Thread starter Thread starter Deanna
  • Start date Start date
D

Deanna

Using Access 2003, have a list of registrations with a field for group (1, 2,
3, etc.) Have created a report that will list the attendees in each group
and would like the title to display "Attendance for Group x" where "x" is the
group I have queried.
 
Deanna said:
Using Access 2003, have a list of registrations with a field for group (1, 2,
3, etc.) Have created a report that will list the attendees in each group
and would like the title to display "Attendance for Group x" where "x" is the
group I have queried.


Try using a text box in the header and set it's control
source expression to something like:
="Attendance for Group " & groupfield

If the group field is name Group, you will probably run into
trouble because Group is a reserved word. Change the name
of the field in the table (and everywhere you use it) to
something else such as RegistrationGroup.
 
Back
Top