Sequential Numbering

asjmoron

Board Regular
Joined
Apr 26, 2016
Messages
98
Office Version
  1. 2016
Platform
  1. Windows
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;


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,
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
How's this?

Code:
Sub addrow()

Dim myval As Long
Dim lastrow As Long
Dim sht As Worksheet


Set sht = ActiveSheet
lastrow = sht.Cells(sht.Rows.Count, "A").End(xlUp).Row


myval = Cells(lastrow, 1).Value
myval = myval + 1
Rows(lastrow).Copy Rows(lastrow + 1)
Cells(lastrow + 1, 1).Value = myval


End Sub
 
Upvote 0
You sir, deserve a Knighthood or at least a pint!

Thanks
 
Upvote 0

Forum statistics

Threads
1,213,563
Messages
6,114,332
Members
448,566
Latest member
Nickdozaj

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top