"How can I cause a page break?"
By dividing your footer into subsections....then on the subsection that you want to start on a new page check "New Page Before" in the section expert FOR THAT SUBSECTION ONLY!!! (Note: when you create subsections, you can apply conditions to all subsections or just one....make sure you do this for just the one you want).
"How can I suppress the header on the second page?"
you can do it 2 ways...
1. create a flag formula and place it in the footer
subsection that doesn't get split and suppress it
@Flag_PageHeaderSuppress
whileprintingrecords;
numberVar Flag := 1;
Now in the conditional suppress of the page header add the formula
WhilePrintingRecords;
numberVar Flag;
Flag = 1;
2. Simply put the following in the conditional suppress of the page header
WhilePrintingRecords;
Pagenumber > 1;
The choice between 1 & 2 depends on your report criteria... ie. do you want the page header if there is more than one page of info before you reach the footer then use method(1) but if you always fit the info on the first page and want page headers suppressed afterward select method (2) since it is the simplest.
I lean to method (1) myself...the reason is...sometimes Crystal gets confused as to what pagenumber it is on when it splits in the middle of a footer.
"I have not been able to find anything in the crystal help on this."
That is why this site is so popular.
Hope this helps
Jim