amandarose80
Technical User
I have 26 tabs, a-z, I want to combine them into one worksheet. They all have the same columns.
Is it possible without cutting and pasting?
Is it possible without cutting and pasting?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub test()
Set wsSummary = ActiveSheet
For Each ws In Worksheets
If ws.Name <> wsSummary.Name Then
With wsSummary.UsedRange
ws.UsedRange.Copy _
Destination:=wsSummary.[A1].Offset(.Row + .Rows.Count, 1)
End With
End If
Next
End Sub