Macro to load sheet 1 from all files in a folder into 1 workbook

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
785
Office Version
  1. 365
Platform
  1. Windows
Hi,
unsure how to do this, basically wanting to:
specify a folder
load sheet 1 from every workbook in that folder into current workbook

i can do this with single files using the below script but unsure how to automatically work through files in a folder
Code:
Sub LoadSheet1()

Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.EnableEvents = False


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


Dim ActiveListWB As Workbook
ChDrive Range("A1").Value
ChDir Range("A2").Value


    Set WS1 = ActiveWorkbook.Sheets("Sheet1a")
    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("Sheet1")
    
    WS2.Range("A1:H5000").Copy WS1.Range("A1")


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


End Sub

appreciate any help
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.

Forum statistics

Threads
1,215,721
Messages
6,126,456
Members
449,314
Latest member
MrSabo83

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