Extracting same cell range + file name from multiple books

Benjaminmin

Board Regular
Joined
Nov 20, 2009
Messages
116
Hi all,

I am writing to ask for help with a macro to help me perform 2 principal tasks across 60 files I have in a folder:
  • Extract cells B6:B8 from each of the 60 files
  • Extract the first part of the file name [the date] - each file is named "DD MM YY Report" (e.g. "01 06 2017 report") and I want to extract the "DD MM YY part"

Ideally the macro would pull this data and collate it into a single sheet in the following format:
  • For the first book it reads:
  • The file name extract/ date in e.g. B1
  • The extracted vales into B2:B4
  • Then offset by one column for the next one, i.e. paste date into C1 and values into C2:C4
  • Repeat for all 60 files in the folder

Does anyone know if this is possible please?

Many thanks in advance for all your help!

Cheers,
Ben
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Try this:

1) Open a new workbook
2) Press Alt-F11 to open the VBA editor
3) From the menu, click Insert > Module
4) Paste the following code in the window that opens
Rich (BB code):
Public Sub GetData()
Dim MyPath As String
Dim MyRow As Long, MyPasth As String, MyCol As Long
Dim fso As Object, fldStart As Object, fl As Object
Dim ts As Worksheet

' Initialization
    MyPath = "c:\Users\username\Desktop\MyFolder2"
     
    MyCol = 1
    Set fso = CreateObject("scripting.FileSystemObject")
    Set fldStart = fso.GetFolder(MyPath)
    Cells.ClearContents

    Set ts = ThisWorkbook.Sheets("Sheet1")
    
    Application.ScreenUpdating = False
    
' 1st section
' Find all the matching files in this directory.  Open the file, get the data

    For Each fl In fldStart.Files
        If fl.Name Like "*.xl*" Then
            Workbooks.Open Filename:=MyPath & "\" & fl.Name
            MyCol = MyCol + 1
            ts.Cells(1, MyCol) = Left(fl.Name, 8)
            ts.Cells(2, MyCol).Resize(3, 1).Value = ActiveSheet.Range("B6:B8").Value
            ActiveWorkbook.Close savechanges:=False
        End If
    Next fl
    
' finalization
    Application.ScreenUpdating = True
    Set fso = Nothing
    Set fldStart = Nothing

End Sub
5) Change the path name to your folder
6) Close the editor (Alt-Q, or use the red X)
7) Press Alt-F8, select GetData, and click Run

Let us know how that works.
 
Last edited:
Upvote 0
Hi Eric,

That is absolutely amazing - works perfectly, exactly what I wanted it to do!!

Thank you very much - I really appreciate the quick and perfect help!!

Best,
Ben
 
Upvote 0

Forum statistics

Threads
1,215,284
Messages
6,124,064
Members
449,139
Latest member
sramesh1024

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