Detecting when the details continue on next page in Crystal Reports 7
Hi team, does anyone know how to detect when the detail section of Crystal Reports is going to continue on the next page? I want to display "continued next page".
Any ideas?
Re: Detecting when the details continue on next page in Crystal Reports 7
Moved to reporting section
Re: Detecting when the details continue on next page in Crystal Reports 7
Quote:
Originally Posted by freewilly
Hi team, does anyone know how to detect when the detail section of Crystal Reports is going to continue on the next page? I want to display "continued next page".
Any ideas?
A quick Idea off the top of my head:
Add page numbers to the report but suppress them so they are not shown.
Add a formula field and in the formula put:
IF PageNumber > 1 then
"Continued Next Page"
else
" "
Then put the formula field at the bottom of the page where you want to show the text.
That's untested but I think it'll work.
:bigyello: