VBA: Load Data from another Workbook but avoid triggering its Workbook_Open Macros ?

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
785
Office Version
  1. 365
Platform
  1. Windows
Hi,
i have this VBA script to load data from another sheet but the sheets i load from contain Workbook_Open macros. Whenever i run the script the macro is triggered
Is there a way to prevent this?

My code below loads up file explorer, i click on my source workbook and it opens
Msgbox pops up from the source Workbook_Open macro (trying to prevent this)

DisplayAlerts.False doesnt work for this

Code:
Sub LoadData()


Application.ScreenUpdating = False
Application.DisplayAlerts = False


Dim FileName As String
Dim WS1 As Worksheet
Dim WS2 As Worksheet


Dim ActiveListWB As Workbook
ChDrive Range("D2").Value
ChDir Range("D3").Value


    Set WS1 = ActiveWorkbook.Sheets("Data")
    FileName = Application.GetOpenFilename(FileFilter:="Excel Files (*.xls*),*.xls*", _
                                               Title:="Select Timesheet to Import", _
                                               MultiSelect:=False)
    
    If FileName = "False" Then
            Exit Sub
        Else
            Set ActiveListWB = Workbooks.Open(FileName)
    End If
    
    Set WS2 = ActiveListWB.Sheets("SourceData")
    
    WS2.Range("A2:A1000").Copy WS1.Range("A2")


    ActiveWorkbook.Close False
    
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True


End Sub

any help appreciated
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,214,875
Messages
6,122,047
Members
449,064
Latest member
scottdog129

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