Continued in Group Header

L

Lynn

I have a report that contains Group Headers that repeat across multiple
pages. Is it possible to have the word "Continued" appear after the group
name on pages where the header repeats?
 
M

Marshall Barton

Lynn said:
I have a report that contains Group Headers that repeat across multiple
pages. Is it possible to have the word "Continued" appear after the group
name on pages where the header repeats?


Add a hidden text box (named txtDtlCnt) to the detail
section. Set its control source expression to =1 ant its
RunningSum property to Over Group.

Then the group header text box can use an expression like:
=[grouping field] & Iff(txtDtlCnt > 1, " (Continued"), "")
 

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