If I understand your question correctly all you need to do is:
- Determine the last row used in the Copy sheet, then
- Copy from the original into that row + 1.
Something like this should suffice, though it's quick and dirty. Also I've made it more "detailed" (and therefore less efficient) than it needs to be to try to make the process clearer. (You don't really need all of the variables that I've declared but I've put them in to make the logic more transparent.)
Sub PasteToFollowingRow()
Dim wks As Excel.Worksheet
Dim rng_Source As Excel.Range
Dim rng_NextRowDown As Excel.Range
Dim l_LastRow As Long, l_LastColumn As Long
Set wks = ThisWorkbook.Worksheets("generation_copy")
l_LastRow = wks.UsedRange.Rows.Count
l_LastColumn = wks.UsedRange.Columns.Count
'Assumes that you'll never copy just one cell...
If (l_LastRow = 1 And l_LastColumn = 1) Then
Set rng_NextRowDown = wks.Cells(1, 1)
Else
Set rng_NextRowDown = wks.Cells(l_LastRow + 1, 1)
End If
Set rng_Source = ThisWorkbook.Worksheets("generation").UsedRange
rng_Source.Copy rng_NextRowDown
ExitPoint:
On Error Resume Next
Set rng_NextRowDown = Nothing
Set rng_Source = Nothing
Set wks = Nothing
On Error Goto 0
Exit Sub
ErrorHandler:
MsgBox "Error " & Err.Number & vbCrLf & Err.Description
Resume ExitPoint
End Sub