This part is a little confusing,
On sheet 1, "data" we enter our results in the cell range from G10 to G28.
These numbers are then manually copied and pasted into sheet 2, "overview"
in the cell range from C3 to C21, D3 to D21, E3 to E21, etc.
This will copy and paste to the next empty line in column A, change the column letter if you want a different column
Using your macro recorder, you will end up with a code like this
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 3/14/2008 by Dave Morrison
'
'
Sheet1.Range("G10:G28").Select
Selection.Copy
Sheets("Sheet2").Select
Range("A65536").Select
Selection.End(xlUp).Select
ActiveCell.Offset(1, 0).Range("A1").Select
ActiveSheet.Paste
End Sub
Cleaned up code
Sub CopyToNextSheet()
Sheet1.Range("G10:G28").Copy Destination:=Sheet2.Range("A65536").End(xlUp).Offset(1, 0)
End Sub
Bookmarks