You are on page 1of 1

Sub tgr()

Dim ws As Worksheet
Dim wsDest As Worksheet

Set wsDest = Sheets("Results")

For Each ws In ActiveWorkbook.Sheets


If ws.Name <> wsDest.Name Then
ws.Range("A2",
ws.Range("A2").End(xlDown).End(xlToRight).End(xlToRight).End(xlToRight).End(xlToRig
ht)).Copy
wsDest.Cells(Rows.Count, "A").End(xlUp).Offset(1).PasteSpecial
xlPasteValues
End If
Next ws

End Sub

You might also like