Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print "Continued from Previous Page" 1

Status
Not open for further replies.

Buckaroo8

Programmer
Aug 6, 2003
27
US
Hi All,
How do create a field to display 'continued from Previous Page' if multiple records produced in the Detail section go over one page (CR 8.5)

Thanks for any & all advice!
 
If you don't have groups, insert a text box with text "Continued from Previous Page". Then create two formulas:

//{@flag1} to be placed in the detail section:
whileprintingrecords;
numbervar flag := 1;

//{@flag0} to be placed in the report footer:
whileprintingrecords;
numbervar flag := 0;

Then right click on the text box->format text->common->suppress->x+2 and enter:

whileprintingrecords;
numbervar flag;

onfirstrecord or
flag = 0

If you have a group, set the group up to "Repeat Group Header on Each Page" and place the text group in the group header. Then format the text box to suppress with the following formula:

not inrepeatedgroupheader

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top