Private Sub CommandButton1_Click()
Dim WS1, WScur As Worksheet
Set WS1 = Sheets("YTD16")
For i = 2 To ActiveWorkbook.Worksheets.Count
lrow1 = WS1.Cells(Rows.Count, 2).End(xlUp).Row + 1
Set WScur = Sheets(i)
lrow = WScur.Cells(Rows.Count, 1).End(xlUp).Row
WScur.Range("a8:j" & lrow).Copy WS1.Range("b" & lrow1)
Next i
End Sub
Why not use the add-in which I provided the link for? No code neededIs there any other way other then code