Problem printing out report heads

  • Thread starter Thread starter Max Scott
  • Start date Start date
M

Max Scott

I have compiled several reports in Access '97 and have put
a title (in Report Header) on each. In some cases, the
title prints out fine. In others, it does not print out,
even though the remainder of the report prints out. I have
had occasion to delete the titles and start over. Did I
delete some controls (or something else that makes this
work)? How do I get the report header to print out in
every case?

Thanks.
 
Max, this should work.

Check that the Visible property of the control and the Report Header section
are both Yes.

If you refer to a field of the report, it will have the value of the first
record in the Report Header section, so if the field is Null in the first
record, nothing will show.


You could also examine what is in the control by printing it to the
Immediate window (Ctrl+G) in the Format event of the Report Header section,
to see if it is a timing issue:
Debug.print [SomeControl]
 
Back
Top