Report Header - multiple pages?

  • Thread starter Thread starter Lee Zard
  • Start date Start date
L

Lee Zard

My client wants the beginning of a new access report to be descriptive
information about the data (3 pages of description). How is the best way to
have page 1-3 always be the same with the data following behind?
 
Lee said:
My client wants the beginning of a new access report to be descriptive
information about the data (3 pages of description). How is the best way to
have page 1-3 always be the same with the data following behind?


I think I would put the text in a little (maybe only one row
and one field) table. Then use a wide, CanGrow text box in
the report header. Set the text box's expression to this
kind of thing:
=DLookup("descriptivefield", "little table")
 
Back
Top