Martha,
With a macro. Copy the code below into a module in a blank workbook, then
run it and when prompted select the workbook with the 13 sheets (Start with
that workbook closed) that you want to combine onto one sheet.
Assumes: table starts in A1, and is contiguous, headers are in row 1 of each
sheet.
HTH,
Bernie
MS Excel MVP
Sub Consolidate()
With Application
..DisplayAlerts = False
..EnableEvents = False
..ScreenUpdating = False
End With
Set Basebook = ThisWorkbook
Set myBook = Workbooks.Open(Application.GetOpenFilename)
For Each mySheet In myBook.Worksheets
mySheet.Activate
If Basebook.Worksheets(1).Range("A" & Rows.Count).End(xlUp).Row = 1 Then
Range("A1").CurrentRegion.Copy _
Basebook.Worksheets(1).Range("A65536").End(xlUp).Offset(1, 0)
Else
Intersect(Range("2:" & Rows.Count),Range("A1").CurrentRegion).Copy _
Basebook.Worksheets(1).Range("A65536").End(xlUp).Offset(1, 0)
End If
Next mySheet
myBook.Close
With Application
..DisplayAlerts = True
..EnableEvents = True
..ScreenUpdating = True
End With
Basebook.SaveAs Application.GetSaveAsFilename
End Sub