Posted 12 November 2020, 3:28 pm EST
Hi,
I’ve been having minimal success with hiding the page header in the report footer section which is setup to show on the last page. The report footer is set for New Page = Before .
Below is what I’ve tried:
ReportInfo1 = Page Number
ReportInfo2 = Page Count
public void ReportFooter1_Format()
{
if(this.ReportInfo1.Text == this.ReportInfo2.Text)
{
this.PageHeader.Visible = false;
}
}
The below seems to only for specific cases without any logical reason:
public void ReportFooter1_Format()
{
PageHeader.Visible = false;
}
Thank you!