Add the word "continued" in a Repeat Section

  • Thread starter Thread starter IThoughtIKnewAccess
  • Start date Start date
I

IThoughtIKnewAccess

Please let me know if there is a way that I can add " - continued" if a group
header repeats (I have set the Repeat Section to yes").

Thanks
 
IThoughtIKnewAccess said:
Please let me know if there is a way that I can add " - continued" if a group
header repeats (I have set the Repeat Section to yes").


Of you can quarantee (via KeepTogether) that the first
detail in each groupwill not spill over onto a second page,
then add a text box (named txtDtlCnt) to the detail section.
Set its control source expression to =1 and RunningSum to
Over Group.

Then you can use a text box in the group header with an
expression like:
=IIf(txtDtlCnt > 1, "Continued","")
 
Back
Top