3 Data Items - how to have a page header on each page

This is, how I tried do do it:

![8055.2013-03-14 16_23_11-PARA PARA - Microsoft Dynamics NAV Classic - Report 50028 BOD Leergutauswertung.png|591x529

But the header does only print on the first page - Option to print on every page is set to YES.

These are my data items5050.Report 50028 _2.jpg

![8883.2013-03-14 16_23_54-PARA PARA - Microsoft Dynamics NAV Classic - Report 50028 BOD Leergutauswertung.png|350x207

Hi, you want to have different header information printed on each page of your report? Try something like this in the OnPreSection trigger of the header:

IF CurrReport.PAGENO = 1 THEN

CurrReport.SHOWOUTPUT(FALSE);

or some variation of this to get what you need. Good luck!

or try

CurrReport.SHOWOUTPUT((CurrReport.PAGENO = 1);

Take a look at the code in other reports and you will see some variations to this.