Sub t()
Dim wb As Workbook, sh As Worksheet, fPath As String, fName As String
Set sh = ThisWorkbook.Sheets("Sheet1") 'Edit sheet name
fPath = ThisWorkbook.Path & "\"
fName = Dir(fPath & "*.xl*")
Do While fName <> ""
If fName <> ThisWorkbook.Name Then
Application.DisplayAlerts = False
Set wb = Workbooks.Open(fPath & fName)
wb.Sheets(1).UsedRange.Offset(1).Copy 'Don't copy headers
sh.Cells(Rows.Count, 1).End(xlUp)(2).PasteSpecial xlPasteValues 'Don't copy formulas
wb.Close False
Application.DisplayAlerts = True
End If
fName = Dir
Loop
End Sub