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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Repeated group header 1

Status
Not open for further replies.

carwillin

Instructor
Apr 9, 2001
13
0
0
GB
Hi,

I want to repeat the group header on each page using the group options but if a group runs on to two pages I want to know that it isn't the start of the group by saying "{Group Name} Continued".

I have tried having two group header sections and conditionally suppressing them but cannot get the suppression code correct.

Has anyone got any ideas??
Thank you in advance

Cara
 
You'll need to create a formula and place the formula in the group header section of the report. Formula should be:

//@GroupName
//Displays “Group Name cont’d” if
//on a repeated Group Header
IIF(InRepeatedGroupHeader,(GroupName ({Group Name}) + " cont'd"), (GroupName ({Group Name})))
 
Thanks DGillz, the formula that you pointed to on my web site is for printing that a Group will be continued on the Next Page, not that it is continued from the previous page.

Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Expert's Guide to Formulas / Tips and Tricks / Guide to Crystal in VB
- tek@kenhamady.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top