Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

repeating headers 1

Status
Not open for further replies.

cm80

Technical User
May 3, 2001
85
US
hi,
I have two levels of grouping in my report. when you drill down to the final level the headers are repeating as such:
HEADER
record
HEADER
record
HEADER
record
How can I fix this so that the header appears only once at the top of the page, please
 
You can conditionally suppress this field by using this formula on it:

if
{field} = Previous ({field})
then true
else false
 
Put the Group Header Field in the Page Header section of the report, suppress the group header and then format the group footer section with "New Page After". That will give you a page break after each group and the appropriate group heading will appear at the top of each page.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top