Hi - welcome to the board
maybe something like this. Lets say you want to put everything onto the "Summary Sheet" then
Code:Sub Test() For x = 1 To Sheets.Count If Sheets(x).Name <> "Summary" Then y = Sheets(x).Range("A65536").End(xlUp).Row Sheets(x).Range("A" & y & ":IV" & y).Copy Destination:=Sheets("Summary").Range("A" & x) Else End If Next x End Sub


LinkBack URL
About LinkBacks



Reply With Quote


Bookmarks