Print the report header on the first page only

poppinspoppins Member Posts: 647
edited 2014-03-17 in NAV Three Tier
Hi everyone,
I have a report where the customer wants the header displayed in the first page only.
Is that possible?
Thanks in advance :)

Comments

  • sarphervizsarpherviz Member Posts: 5
    Hi

    OnPreSection field put

    IF CurrReport.PAGENO <> 1 THEN CurrReport.SHOWOUTPUT(FALSE);
  • Torben_Wind_Meyhoff[MSFT]Torben_Wind_Meyhoff[MSFT] Member, Microsoft Employee Posts: 22
    If it is RDLC then you can set some properties in the Page Header Properties (See attached image).
    If you want even more control you can disable the normal header and create it as a Tablix, then you can control if it will be repeated or not on the following pages and will not take up space on the blank pages.
    BR
    Torben
    “This posting is provided "AS IS" with no warranties, and confers no rights.”
  • postsauravpostsaurav Member Posts: 708
    Hey Poppins,

    If you want the page header only on first page do these -

    1. Don't use Page Header.
    2. Use A header in Body Section of the Report.
    3. I would suggest to create a separate table in body at the top. The table will contain only header section.

    You can put all the fields in the first table within body and you will be able to achieve same.

    Thanks & Regards,
    Saurav Dhyani

    Do you Know this About NAV?


    Connect - Twitter | Facebook | Google + | YouTube

    Follow - Blog | Facebook Page | Google + Page
Sign In or Register to comment.