Problem printing out report heads

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.
 
A

Allen Browne

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top