I'm assuming that all of the rows within your target area have the same formula(s). If that's the case, then you can create a row in the spreadsheet that contains only the formulas you want to copied, and name that row "Form_Row".
Then create a control button that calls the following code:
Sub InsertRow()
ActiveCell.Offset(0, -ActiveCell.Column + 1).Select
Selection.EntireRow.Insert
Range("Form_Row").Copy
Selection.PasteSpecial
Application.CutCopyMode = False
End Sub
Now, place the cursor where you want the new row to be (any column) and hit the button.
Hope this helps
SAE
Bookmarks