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.
Set objConnection = CreateObject("ADODB.Connection")
objConnection.Open _
"Provider = Microsoft.Jet.OLEDB.4.0; " & _
"Data Source = " & db_path
xcl_file_path = "c:\folder\sample.xls"
table_name = "sample_tbl_in_access"
sql_string = "SELECT * INTO " & table_name & " FROM [Excel 8.0;HDR=Yes;" & _
"Database="& xcl_file_path & "].[sheet1$]"