How to hide a page header if there is no record(details section) on last page. Page header must be shown on last page if there is some data on last page otherwise hide the page header.

Formaula pagenumber = totalpagecount won't work as it will always suppress the last page's header.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Put this formula in a suppressed field in the detail section:

WhilePrintingRecords;
Global BooleanVar finished;
finished := OnLastRecord

And make this the Suppress formula in the page header:

Global BooleanVar finished
  • Before finished is initialized the page header will show.
  • Once you print a detail record it'll be set to false.
  • When you finally reach the last detail section, finished is set to true.
  • If you happen to reach another page header, finished is still true, and Crystal will suppress the header.

It's an interesting problem. I've encountered this behavior before but never tried to solve it. I think you need to use a variable because in a page header, the usual options like Next() and OnLastRecord can't distinguish between having one more record to print and having no more records to print. I think running totals would have the same problem – the values would be the same on a page with one more record to print, and on a page with no records to print.

link|improve this answer
feedback

You may be able to adapt Crystal Reports: Display a Message When Report Has No Data to meet your needs.

link|improve this answer
feedback

Exactly right in dealing with page headers. next and lonlastrecord may not work at all in this scenario.

Problem I was having was the fact that my report included ONE VERY LAST detail/record that was grouped under a new heading. The page header didn't understand that it was ok to print one more time on a new page when using next/onlastrecord/counter in suppression.

Thanks for the suggestion above Noa - worked like a charm. No need to use the 2nd line in the header. Global BooleanVar finished; is enough.

link|improve this answer
Glad it worked for you! I edited my post to incorporate your suggestion. – noa Mar 3 at 1:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.