By some stroke of luck, I actually just made it work myself. See that - even being in the presence of you experts begins to help.

Here's the code I went with:

Sub Macro10()
'
' Macro10 Macro
'

'
    Range("C36:K" & Cells(Rows.Count, "K").End(xlUp).Row).Select
    Selection.Copy
    ActiveWindow.SmallScroll Down:=9
    Range("C65").Select
    ActiveSheet.Paste
End Sub