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.
Dim stDocName As String
stDocName = "YourTableName"
DoCmd.OpenReport stDocName, acNormal
Dim stDateCrit As String
stDateCrit = "[YourColumn] between #" & StartDate & "#" _
& " and #" & EndDate & "#"
Dim stDocName As String
stDocName = "YourTableName"
DoCmd.OpenReport stDocName, acNormal
, , stDateCrit