Hi
it would take a very simple macro to add a row at the top of the sheet and put text into the first few cells. For example, this macro adds a row at row 1 then inserts the labels "Label 1" through "Label 3" in columns 1 to 3
Sub AddRow()
Dim MyLabels As Variant, x As Long
MyLabels = Array("Label 1", "Label 2", "Label 3")
ActiveSheet.Rows(1).EntireRow.Insert
For x = LBound(MyLabels) To UBound(MyLabels)
Cells(1, x + 1) = MyLabels(x)
Next x
End Sub
Is that what you want? Or, do you have something else in mind when you say "specific parameters" from the row below?
Bookmarks