For this kind of operation, it's quite simple.
In Report Header, add a formula field that looks like:
WhilePrintingRecords
Global BooleanVar PageTest := False
(This creates the variable PageTest and initializes it to False, meaning we are not in the middle of a group.)
In Group Header:
WhilePrintingRecords
Global BooleanVar PageTest
PageTest = True
In Group Footer:
WhilePrintingRecords
Global BooleanVar PageTest
PageTest = False
In Page Footer:
WhilePrintingRecords
Global BooleanVar PageTest
IF PageTest = True THEN
"Continued on next page..."
ELSE
""
Just add these formulas to the indicated sections, and it should work. The only formula that will actually show up on the final report will be the last one, which will show the "Continued..." phrase when the page break comes in the middle of the page.