Copy Data From External Workbook Without Opening

vthokienj

Board Regular
Joined
Aug 1, 2011
Messages
105
Office Version
  1. 365
Platform
  1. Windows
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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.

Forum statistics

Threads
1,223,162
Messages
6,170,432
Members
452,326
Latest member
johnshaji

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