Continued in Group Header

  • Thread starter Thread starter Lynn
  • Start date Start date
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?
 
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"), "")
 
Back
Top