A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I'm afraid I don't quite follow. Below is a simple copy of the formulas in row 10 into row 11 (static). What I want to do is to simply allow the row where the formulas are pasted to be dynamic (based on an index which increases every time a new project worksheet gets added to the workbook)
Rows("10:10")
Application.CutCopyMode = False
Selection.Copy
Rows("11:11")
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False