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.
DoCmd.TransferSpreadsheet acExport, acspreadsheettypexcel9, "Queryortable", "excel file path", "True/False to store fieldname"
Dim AccApp As New Access.Application
AccApp.OpenCurrentDatabase ("Your mdb path")
AccApp.DoCmd.TransferSpreadsheet acExport, acspreadsheetTypexcel9, "Queryortable", "excel file path", "True/False to store fieldname"
AccApp.CloseCurrentDatabase
Set AccApp = Nothing