VBA CODE. Copy files from specific table with name of access database to speciffic sheet in excel

HELIWTIS

New Member
Joined
Jul 26, 2022
Messages
4
Office Version
  1. 2019
Platform
  1. Windows
Hello there,

I am trying to make a vba code that gives me the option to choose wich file from the usb stick i want to open, then opens up the file where I then can load an access database file, which then copies the data from the specific table with name of access database.
I have do a try but it doesn't work


Sub money()
'
' money?a???e?t???
'

'
ChDir "D:\"
Workbooks.OpenDatabase Filename:="D:\money1.mdb", CommandText _
:=Array("daily"), CommandType:=xlCmdTable, ImportDataAs:= _
xlTable
Range("A1:G12").Select
Selection.Copy
Windows("base - flow1 - copy.xlsm").Activate
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,214,829
Messages
6,121,827
Members
449,051
Latest member
excelquestion515

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