Copy Data From External Workbook Without Opening

vthokienj

Board Regular
Joined
Aug 1, 2011
Messages
103
I would like to copy data from an external workbook and save it into my current workbook. There is plenty of code for this. What I have not found is how to do this without the external workbook ever opening. Is this possible and how would you do this?

All I can see related to this is using the ActiveWindow.Visible = false statement below, but the external workbook still opens first prior to this statement executing. I just want to get data from that workbook without either the time involved in loading/displaying the workbook or having macros like the workbook_open() executing.

Thanks


Code:
    Dim wbExternal As Workbook, wbInternal As Workbook
    Dim wsExternal As Worksheet, wsInternal As Worksheet
    Dim filePath As String: filePath = "C:\a\readfrom.xlsm"
    Dim wkbSource As Workbook
    Dim wkbDest As Workbook
    Dim sheetToCopy1 As Worksheet
    
    Set wkbDest = thisWorkbook
    Set wkbSource = Application.Workbooks.Open(filePath)
    ActiveWindow.Visible = False
    Set sheetToCopy1 = wkbSource.Sheets(sheetnameObjectives)
    sheetToCopy1.Copy after:=wkbDest.Sheets(1)
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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