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 oAccess As New Access.Application
'The sql below is only the WHERE portion.
'When setting up the reports you will need to have them 'look at all of the data in a table. Ex. select * from foo.
'Then then sql statement below will filter off of the table.
strSQL = "Date_shipped = #" & dateShipped & "#
With oAccess
.Visible = True
.DoCmd.Maximize
.OpenCurrentDatabase <database path>, False
.DoCmd.OpenReport <reportname>, acPreview, , strSQL
End With