Hello all,
Probably a simple fix that I just cannot seem to figure out... I have been using the following macro quite successfully to "merge" portions (as defined by the range) of multiples worksheets (in the same book) into one. However, an issue has arisen that I cannot seem to fix.
The code does exactly what I want EXCEPT now it's cutting off (or pasting) the last two lines of the previous pasting operation and I am missing information... I thought of adding a couple of "blank rows" as a pad between "tables"... but I cannot get that to work either. Suggestions???
With many thanks....
S
Probably a simple fix that I just cannot seem to figure out... I have been using the following macro quite successfully to "merge" portions (as defined by the range) of multiples worksheets (in the same book) into one. However, an issue has arisen that I cannot seem to fix.
The code does exactly what I want EXCEPT now it's cutting off (or pasting) the last two lines of the previous pasting operation and I am missing information... I thought of adding a couple of "blank rows" as a pad between "tables"... but I cannot get that to work either. Suggestions???
With many thanks....
S
VBA Code:
Sub SummarizeSheets()
Dim ws As Worksheet
Application.ScreenUpdating = False
Sheets("Summary").Activate
For Each ws In Worksheets
If ws.Name <> "Summary" Then
ws.Range("B1:G17").Copy
ActiveSheet.Paste Range("A65536").End(xlUp).Offset(1, 0)
End If
Next ws
End Sub