VBA - Important Excel sheets into Access Table

p4nny

Board Regular
Joined
Jan 13, 2015
Messages
246
Hello

the following code works great for importing Excel sheets into an Access table.

The only issue is, the InputPath contain around 29 subfolders that sit within the Testing folder.

Ideally I would like to alter this code slightly so it looks in those subfolders.

Many thanks


Code:
Public Function Import_Multi_Excel_Files()
 
Dim InputFile As String
Dim InputPath As String
 
InputPath = "S:\Change Impacts\Testing[URL="file:///\\enter%20path%20here\"]\[/URL]"
InputFile = Dir(InputPath & "*.xls")
 
Do While InputFile <> ""
 
    DoCmd.TransferSpreadsheet acImport, , "[I]entertablename[/I]", InputPath & InputFile, True '< The true is for column headers
    InputFile = Dir
Loop
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Forum statistics

Threads
1,216,267
Messages
6,129,792
Members
449,535
Latest member
Piaskun

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