Title heading

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

Guest

Within a report how can I place the title of my report i.e. my heading within
every sheet to appear at the top. Also I need a pagebreak for every Agent
that I have and for some reason I can only page break after record
Many Thanks,
Matt
 
Put the information you want to have on every page in the page header.
-Or-
Add a top level group header and put the repeating information in the group
header. Then set the repeat property for the group header to True (Yes)

Are you grouping on Agent or is that in the detail section? You should be
able to page break before or after any section. Are you saying that this
choice is not available in the properties for the section?
 
The page header is now sorted. Much appreciated
For a pagebreak, I have managed to insert it so that I can have agents
listed on a new page but however I now have a blank first sheet with just the
page header! How do I rid this?
 
Are you using the page break control? Or are you using a property of a
report section?

I normally use the page break properties of the sections. If you have
grouped by agent, you can have a group footer and break after or before the
group footer.

If you need to use the page break control, you can use code to set its
visible property to true or false. If it isn't visible, it won't trigger a
page break. Something like
Me.PageBreakControlName.Visible = Me.Page <> 1
 
Back
Top