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.
varPage = 1
DoCmd.OpenReport "Report1", acViewNormal
...
DoCmd.openReport "Report6", acViewNormal
Private Sub Report_Open(Cancel As Integer)
Me.Page = varPage
End Sub
Private Sub ReportFooter_Format(Cancel As Integer, FormatCount As Integer)
varPage = Me.Page + 1
End Sub