Hi - Perhaps this is what you are looking for:
Sub Test()
Dim i As Integer
i = Range("G24").Value 'Cell Reference where the loop is defined as per OP
Range("C3").Select 'Assuming the formula you want to copy down is in Cell C3, Change this as per your needs
Selection.Copy
Range(Selection, Selection.Offset(i - 1, 0)).Select 'Repeats down the formula based on loop defined in cell G24 and subtracts 1
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
End Sub
Hope this helps...
Bookmarks