Import MSAccess Table through Excel VBA

lucausa75

New Member
Joined
Oct 15, 2021
Messages
22
Office Version
  1. 2013
Platform
  1. Windows

Dear all,

I need some VBA code to import a table (Called Table1) from one access database (Called Database1) to another access database (Called Database2).

I found some codes and I modified as below but I got the below error on this line: acExport

Image

Sub ImportTable()
Dim AccessApplication As Object
Dim CurrentDBSourcePath As String
Dim CurrentDBPath As String

Set AccessApplication = CreateObject("Access.Application")

CurrentDBSourcePath = "C:\Database1.accdb"
CurrentDBPath = "C:\Database2.accdb"

AccessApplication.OpenCurrentDatabase CurrentDBSourcePath
AccessApplication.DoCmd.TransferDatabase acExport, "Microsoft Access", CurrentDBPath, acTable, "Table1", "Table2", False
End Sub

Could you give any suggestion on solving the issue or using a different coding?

Thanks
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop

Forum statistics

Threads
1,215,214
Messages
6,123,660
Members
449,114
Latest member
aides

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