G
Guest
I have a report that is grouped by compnay name and then technician Name. The
requirement is --> each technician info per page. I added a pagebreak in the
Technician group footer to meet the requirement. Because the pagebreak in the
Technician group footer, the last page always blank.
I added the following codes in the detail_format event to prevent user to
see the last blank page:
If Me.Page = Me.Pages - 1 Then
GroupFooter2.Visible = False
Else
GroupFooter2.Visible = True
End If
The above code works fine so the users will not see the last blank page.
However, when I print it. It print the report without pagebreak.
I want to hide the last blank page from viewing and also not to print the
last blank page. Is there any way to do it?
requirement is --> each technician info per page. I added a pagebreak in the
Technician group footer to meet the requirement. Because the pagebreak in the
Technician group footer, the last page always blank.
I added the following codes in the detail_format event to prevent user to
see the last blank page:
If Me.Page = Me.Pages - 1 Then
GroupFooter2.Visible = False
Else
GroupFooter2.Visible = True
End If
The above code works fine so the users will not see the last blank page.
However, when I print it. It print the report without pagebreak.
I want to hide the last blank page from viewing and also not to print the
last blank page. Is there any way to do it?