Need to repeat recorded macro

I need to repeat this recorded macro beginning in cell A1035 and print each result down a cell (A1036...down to A1135) :

Sub TEST3()

ActiveWindow.SmallScroll Down:=-26
ActiveWindow.SmallScroll ToRight:=-1
ActiveWindow.SmallScroll Down:=-3
Range(\"I1012:K1012\").Select
Application.CutCopyMode = False
Selection.Copy
ActiveWindow.SmallScroll Down:=22
Range(\"I1034\").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False

End Sub

Thank you for your help