An RDLC report is printing an extra blank page because a page break was added to keep the headers and report body data aligned. Now the report prints an extra blank page at the end of the report after the page break. Does anyone have an ideas on how to programmatically prevent a page break from causing an extra blank page from geneating?
I’ve seen reports behave like this before. Make sure that the reporting area is in tight against your table/data items. If there is any empty white space, it could print an extra page.
An extra blank page in an RDLC report is usually caused by the report body width plus margins exceeding the page size, so first ensure the total width (body + left/right margins) is less than or equal to the page width. Also, check for manual page breaks in tablix or group settings and remove or adjust them if unnecessary. Set the group’s KeepTogether property to False to avoid forced page breaks, and make sure unused sections like headers or footers aren’t adding height—set them to hidden or reduce their size. These adjustments should prevent the extra blank page from printing.