Hi all,
I have set up a macro to import data from several workbooks into one master workbook. This is my first time creating a macro, and as you can see from below it is not very efficient. I am looking for any tips on how I can improve it, as I need to repeat the process for 25 workbooks. I want to import two specific columns of data (ID number and Date) into two columns in the masterfile. The 25 workbooks are formatted differently (received from external source) and which columns I need to import from will therefore vary from workbook to workbook. The amount of rows that I will need to import will also on a weekly basis.
In the below, I am importing data from "Testfile1" and "Testfile2" into "MasterFile"
Sub Import()
'
' Import Macro
'
'
Application.ScreenUpdating = False
Workbooks.Open ("C:\Users\tom_000\Documents\Excel test file\Testfile1.xlsx")
Range("C2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("MasterFile.xlsx").Activate
Range("D2").Select
ActiveSheet.Paste
Windows("Testfile1.xlsx").Activate
Range("H2").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Windows("MasterFile.xlsx").Activate
Range("F2").Select
ActiveSheet.Paste
Windows("Testfile1.xlsx").Activate
ActiveWindow.Close
Workbooks.Open ("C:\Users\tom_000\Documents\Excel test file\Testfile2.xlsx")
Range("B4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("MasterFile.xlsx").Activate
lastRow = ActiveSheet.Cells(Rows.Count, "D").End(xlUp).Row
ActiveSheet.Range("D" & lastRow + 1).Select
ActiveSheet.Paste
Windows("Testfile2.xlsx").Activate
Range("F4").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Windows("MasterFile.xlsx").Activate
lastRow = ActiveSheet.Cells(Rows.Count, "F").End(xlUp).Row
ActiveSheet.Range("F" & lastRow + 1).Select
ActiveSheet.Paste
Windows("Testfile2.xlsx").Activate
ActiveWindow.Close
Application.ScreenUpdating = True
End Sub
I know I need to declare variables etc, but not really sure how to do this. Any help on improving this code would be really appreciated!
Additionally: I would also like the rows in column A in the Masterfile to be populated based on the name of the sourcefile, how can I make a code to do this? Bearing in mind that this needs to correspond with the amount of rows that I have imported from that workbook.
Thank you guys!
I have set up a macro to import data from several workbooks into one master workbook. This is my first time creating a macro, and as you can see from below it is not very efficient. I am looking for any tips on how I can improve it, as I need to repeat the process for 25 workbooks. I want to import two specific columns of data (ID number and Date) into two columns in the masterfile. The 25 workbooks are formatted differently (received from external source) and which columns I need to import from will therefore vary from workbook to workbook. The amount of rows that I will need to import will also on a weekly basis.
In the below, I am importing data from "Testfile1" and "Testfile2" into "MasterFile"
Sub Import()
'
' Import Macro
'
'
Application.ScreenUpdating = False
Workbooks.Open ("C:\Users\tom_000\Documents\Excel test file\Testfile1.xlsx")
Range("C2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("MasterFile.xlsx").Activate
Range("D2").Select
ActiveSheet.Paste
Windows("Testfile1.xlsx").Activate
Range("H2").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Windows("MasterFile.xlsx").Activate
Range("F2").Select
ActiveSheet.Paste
Windows("Testfile1.xlsx").Activate
ActiveWindow.Close
Workbooks.Open ("C:\Users\tom_000\Documents\Excel test file\Testfile2.xlsx")
Range("B4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("MasterFile.xlsx").Activate
lastRow = ActiveSheet.Cells(Rows.Count, "D").End(xlUp).Row
ActiveSheet.Range("D" & lastRow + 1).Select
ActiveSheet.Paste
Windows("Testfile2.xlsx").Activate
Range("F4").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Windows("MasterFile.xlsx").Activate
lastRow = ActiveSheet.Cells(Rows.Count, "F").End(xlUp).Row
ActiveSheet.Range("F" & lastRow + 1).Select
ActiveSheet.Paste
Windows("Testfile2.xlsx").Activate
ActiveWindow.Close
Application.ScreenUpdating = True
End Sub
I know I need to declare variables etc, but not really sure how to do this. Any help on improving this code would be really appreciated!
Additionally: I would also like the rows in column A in the Masterfile to be populated based on the name of the sourcefile, how can I make a code to do this? Bearing in mind that this needs to correspond with the amount of rows that I have imported from that workbook.
Thank you guys!