Posted 11 September 2018, 3:19 pm EST
I have a need to suppress the page header on the Report Footer page. Cannot seem to make it work. I have tried the following code:
If Page = Pages then
Pageheader.Visible = false
EndIf
And placed it in various OnFormat and OnPrint events in the Expression editor but it does nothing. I have even tried setting PageHeader.Visible in the FooterOnFormat event. The header just prints normally. I was able to successfully suppress is on the ReportHeader using this code in the ReportOnFormat event:
If Page =1 then PageHeader.visible = false
Any suggestions?
Mike