Adding Cont. when Section Header spans mutliple pages

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

Guest

A few times, the data under a section spans multiple pages (ie. a list of
contacts in a state). I would like to have the section header (State Name)
repeated on the second page but with "cont." included (ie. Illinois cont.)
Any suggestions
 
prairiewind said:
A few times, the data under a section spans multiple pages (ie. a list of
contacts in a state). I would like to have the section header (State Name)
repeated on the second page but with "cont." included (ie. Illinois cont.)
Any suggestions

Add an invisible text box (named txtDtlCnt) to the detail
section. Set its expression to =1 and RunningSum property
to Over Group.

Set the group header section's RepeatSection property to
Yes. Then use this kind of expression in the group header
text box:
=[State Name] & IIf(txtDtlCnt > 1, " (cont.)", Null)
 
Back
Top