Skip to main content

How to number rows after inserting or deleting rows automatically in Excel?

Supposing, I have numbered rows from 1 to 20 in a column, now, when I insert or delete a row from the data range, I want the number list can be renumbered automatically. Is this task can be completed in Excel?

Number rows after inserting or deleting rows automatically with formulas

Number rows after inserting or deleting rows automatically with VBA code


Number rows after inserting or deleting rows automatically with formulas

In fact, the Row function in Excel can help you to auto renumber the rows after inserting or deleting rows, please do as follows:

1. Enter this formula: =ROW()-1 into cell A2, and then drag the fill handle down to the cells that you want to number the rows, see screenshot:

doc auto number rows 1

Note: If your number list start at the first cell, you can change the formula as =ROW(), you can add or subtract from the formula if your numbers don't match up with the actual row, for example, =ROW()-3, =ROW()+10

2. Then create a table for this data range, select the data range, and click Insert > Table, and then in the Create Table dialog box, check My table has headers if there are headers in your range, see screenshot:

doc auto number rows 2

3. And then click OK, the table has been created at once, and now, when you insert or delete rows in the table range, the row numbers are always updated automatically, see screenshot:

doc auto number rows 3


Number rows after inserting or deleting rows automatically with VBA code

Except the above formula method, you can also finish it with a VBA code.

1. Go the worksheet that you want to insert sequence numbers automatically.

2. Right click the sheet tab, and select View Code from the context menu, in the popped out Microsoft Visual Basic for Applications window, please copy and paste the following code into the blank Module window.

VBA code: Auto number rows after inserting or deleting rows:

Private Sub Worksheet_Change(ByVal Target As Range)
'Updateby Extendoffice 20160612
    Dim I As Integer
    I = 1
    Application.EnableEvents = False
    For I = 1 To 20
        Range("A" & I).Value = I
    Next
    Range("A21").Value = ""
    Application.EnableEvents = True
End Sub

3. Then save and close this code, when you enter the first number 1 into cell A1, the sequence numbers from 1 to 20 will be filled automatically. If you insert or delete rows from the range, the series number will be renumbered automatically at once.

Note: In the above code, the letter A indicates the column letter which you want to fill the sequence number, 1 To 20 is the rows which you want to number, and A21 is the cell reference next to your last numbered cell. You can change them as you need.


Insert bullets or numbering list into a column of cells

Kutools for Excel's Insert Bullet and Insert Numbering features can help you quickly insert bulleted and numbering list to a column of cells. Click to download Kutools for Excel!

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


Demo: Number rows after inserting or deleting rows automatically in Excel worksheet

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (6)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
is there any formula?
This comment was minimized by the moderator on the site
if i delete the row, is there any possibility to set below numbers are in serial
This comment was minimized by the moderator on the site
Thanks....
This comment was minimized by the moderator on the site
Just what I was looking for thank you!!
This comment was minimized by the moderator on the site
very very thanks! http://www.extendoffice.com<br /> :D
This comment was minimized by the moderator on the site
It doesn't work for me. It won't allow me to insert a table for more than one row. If I proceed without it, it does not change the numbers after deleting or adding a row. Please advise. Thanks!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations