How to repeat Crystal Report Header on each page?

How do I repeat page header on every page except the first page of a report?

  • I have a client report (.rdlc) that I am editing in Visual Studio. I need a way to display an empty page header on every page, except the first page of the report. The reason for this is because the client has paper with their logo that needs space at the top to display on subsequent pages.

  • Answer:

    Possibly, this might help you. On the report, right-click on the page header and select the option Header Properties... On Page Header Properties, uncheck the option Print on first page. Now the page header will not appear on the first page of the report.

Jason at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

Create an empty textbox that is big enough to hold the logo. Then, for the Hidden property of that textbox, use the expression: =IIf(Globals!PageNumber=1,false,true) That will hide the textbox on the first page but show it on all others.

PaulStock

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.