Import Multiple Access Tables into Excel

Ryan180

New Member
Joined
Nov 6, 2012
Messages
4
I've inherited a report which uses some VBA code to run an Access macro and import a single database table into a specified range on the spreadsheet.

Code:

Code:
Private Sub CommandButton1_Click()

Dim A As Object
Application.DisplayAlerts = False
Set A = CreateObject("Access.Application")
A.Visible = False
A.OpenCurrentDatabase ("C:\Folder\Database.mdb")
A.DoCmd.RunMacro "Get_Data"
Application.DisplayAlerts = True


Worksheets("worksheet_name").Range("A2:G600").ClearContents


  Dim strDB As String, strDBPath As String
  Dim strTab As String, strName As String
  Dim strCommandText As String, strConnection As String
  Dim strRange As String, strQuery As String
  Dim qt As QueryTable
     
  '  update these lines as necessary
  strTab = "worksheet_name"
  strRange = "A2"
  strDB = "Database"
  strDBPath = "C:\Folder"
  'strQuery = "tblCycles"
  strQuery = "SELECT * from TABLE1;"
  '  end update these lines section
  
'  strConnection = "ODBC;DSN=MS Access Database;DBQ=" & strDBPath & "\" & strDB & ".mdb;DefaultDir=" & strDBPath & ";DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=600;"
  strConnection = "ODBC;DSN=MS Access Database;DBQ=" & strDBPath & "\" & strDB & ".mdb;DefaultDir=" & strDBPath & ";DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=600;"
  'strCommandText = "SELECT * FROM `" & strDBPath & "\" & strDB & "`." & strQuery & " " & strQuery
  strCommandText = strQuery
    
   With Worksheets(strTab).QueryTables.Add(Connection:=strConnection, Destination:=Worksheets(strTab).Range(strRange))
      
    .CommandText = strCommandText
    
    .AdjustColumnWidth = False
    .FieldNames = False
    .RefreshStyle = xlInsertDeleteCells
    .RowNumbers = False
    .FillAdjacentFormulas = False
    .RefreshOnFileOpen = False
    .HasAutoFormat = False
    .BackgroundQuery = True
    .TablesOnlyFromHTML = True
    .SavePassword = True
    .SaveData = True
    .Refresh BackgroundQuery:=True
  
  End With
   
End Sub

My problem is that I now need to retrieve more than one table as part of the same Command Button click (i.e. button click -> macro runs -> TABLE1 returned to specified range -> TABLE2 returned to another specified range etc.) but don't have the required expertise that will allow me to do this.

Can anyone advise how the above code can be amended in such a way that I can retrieve multiple tables please?

Any advice would be much appreciated!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,216,124
Messages
6,128,979
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top