Adding Cont. when Section Header spans mutliple pages

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
 
M

Marshall Barton

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)
 

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