Hey guys.
I am trying to write some code to do three things...
1. add a new row at the end of bottom of the sheet
2. copy all formulae with it
3. in column A, add Sequential Numbering
I have sussed out the first two but the last one is killing me!
to make it a tad more difficult for myself, the rows start at A12.
1 and 2 is covered by the below;
Thanks,
I am trying to write some code to do three things...
1. add a new row at the end of bottom of the sheet
2. copy all formulae with it
3. in column A, add Sequential Numbering
I have sussed out the first two but the last one is killing me!
to make it a tad more difficult for myself, the rows start at A12.
1 and 2 is covered by the below;
Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select
Rows(Selection.Row - 1).Copy
Rows(Selection.Row).Insert Shift:=xlDown
Any help would be amazing.
Thanks,