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.
' choose table name here depending on workstation or
' from a text file that contains the workstation name and
' the table name. or you can put them in an array
' connect to the database
db_path = "c:\acces_database_name.mdb"
Set objConnection = CreateObject("ADODB.Connection")
objConnection.Open _
"Provider = Microsoft.Jet.OLEDB.4.0; " & _
"Data Source = " & db_path
dim table_name, xcl_file_path, sql_string
table_name = "some_table_name"
xcl_file_path = "c:\xcl_files\your_xcl_file_name.xcl"
sql_string = "SELECT * INTO " & table_name & " FROM [Excel 8.0;HDR=Yes;" & _
"Database="& xcl_file_path & "].[Sheet1$]"
objConnection.Execute sql_string