jtfrier
Technical User
- Jan 12, 2006
- 85
I have some stuff on my report that is hiden and do not want it to print when I view the report on my computer it is hiden but when I print the report it shows up.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = Me.Pages Then
Me.lbl1.Visible = True
Me.lbl2.Visible = True
Me.lbl3.Visible = True
Me.lbl4.Visible = True
Me.lbl5.Visible = True
Me.lbl6.Visible = True
Me.lbl7.Visible = True
Me.lbl8.Visible = True
Me.lbl9.Visible = True
Me.lbl10.Visible = True
Me.lbl11.Visible = True
Me.lbl12.Visible = True
Me.lbl13.Visible = True
End If
End Sub