I made this script by using the Record Macro command in Excel.
Sub Collecting()
'
' Collecting Macro
'
Range("A1:L1").Copy
Windows("Calculations.xlsx").Activate
Range("W44").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("AI44").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Results.xlsb").Activate
Range("M1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
'
End Sub
This is working, but I need the Range("A1:L1") and Range("M1") to be incremented automatically to Range("A2:L2") and Range("M2"), Range("A3:L3") and Range("M3"), and so on. Other 'ranges' than those are static.