Sub Merger()
'
'Macro to merge the tracking spreadsheets into one tab in a master sheet'
'Applies only to the Type1 sheets'
Dim wbk As Workbook
Dim Filename As String
Dim Path As String
Path = "C:\Work\spreadsheetdata\Type1\"
Filename = Dir(Path & "*.xls*")
'--------------------------------------------
'OPEN EXCEL FILES
Dim no As Integer
'no is the variable representing row number'
no = 2
Do While Len(Filename) > 0 'IF NEXT FILE EXISTS THEN
Set wbk = Workbooks.Open(Path & Filename)
Application.ScreenUpdating = False
Sheets("Tab1").Select
Range("A8:A23").Select
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Sheets("Type1").Select
Range(Cells(no, 1), Cells(no, 16)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab3").Select
Range("A7:A8").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 17), Cells(no, 18)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab4").Select
Range("A7:A8").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 19), Cells(no, 20)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab5").Select
Range("A7:A8").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 21), Cells(no, 22)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab6").Select
Range("A7:A8").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 23), Cells(no, 24)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab7").Select
Range("A7:A10").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 25), Cells(no, 28)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab8").Select
Range("A7:A10").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 29), Cells(no, 33)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab9").Select
Range("A7:A8").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 33), Cells(no, 34)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Windows(Filename).Activate
Sheets("Tab10").Select
Range("A7:A9").Select
Application.CutCopyMode = False
Selection.Copy
Windows("TestMasterSpreadsheet.xlsx").Activate
Range(Cells(no, 35), Cells(no, 37)).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
wbk.Close True
Filename = Dir
no = no + 1
Loop
Application.ScreenUpdating = True
End Sub
I realise I should have chosen a shorter example as not all of them have this many tabs :p
Bookmarks