Filling Table Cells with Sequential Numbers

Written by Allen Wyatt (last updated March 15, 2021)
This tip applies to Word 2007, 2010, 2013, and 2016


5

Denis frequently uses tables in his documents. In those tables, he has a need to add a series of sequential numbers to the cells in the first column. Denis wonders if there is a way to pick a starting number in a cell and then have Word add the sequential numbers for all the cells under that starting number.

There are a couple of ways you could go about this. One way is to use Word's built-in numbering, in this manner:

  1. Insert your table as you normally would.
  2. Select the cells in the table that you want to have numbered.
  3. Display the Home tab of the ribbon.
  4. Click the Numbering tab, in the Paragraph group. Word adds numbering, automatically, to the selected cells.

If you want to modify the starting number for the cells, right-click the number in the first cell and then choose Set Numbering Value from the resulting Context menu. Word displays the Set Numbering Value dialog box. (See Figure 1.)

Figure 1. The Set Numbering Value dialog box.

Enter the value you want to start with, and when you click OK, Word updates the numbers in the cells. You'll also note that if you insert any rows in the middle of your numbered sequence, Word automatically adds a number to that inserted row.

Noting this behavior, you might appreciate a simple variation on the above process that works well when you are inserting a brand new table:

  1. Insert a single-row table.
  2. Add the automatic number to the desired column and change its starting value, if desired. (In other words, follow the steps above for the single cell in the row.)
  3. When entering data in the table and you get to the last column, press Tab and Word inserts a new row that is automatically numbered.

Another powerful way to add your numbering is to use the SEQ field. Follow these general steps:

  1. Insert the insertion point at the place in the table where you want the first number.
  2. Press Ctrl+F9 to insert an empty set of field braces.
  3. Inside the field braces, type SEQ followed by a space, then a name you want used for this particular sequence, then another space, then \r, then the number you want the sequence to start with. Here's an example of how the field code would appear if you wanted to start counting with the number 4:
  4.      { SEQ table1 \r4 }
    
  5. With the insertion point still within field code, press Shift+F9. Your number should appear.
  6. Repeat steps 2 through 4 for each of the other cells where you want a number, but make sure you leave off the \r switch in these others.

Finally, if you prefer to use a macro to insert numbers in a sequence of cells, you could use one similar to this:

Sub AddNumbersToTable()
    Dim RowNum As Long
    Dim ColNum As Long
    Dim iStartNum As Integer
    Dim J As Integer

    If Selection.Information(wdWithInTable) Then
        RowNum = Selection.Cells(1).RowIndex
        ColNum = Selection.Cells(1).ColumnIndex

        iStartNum = Val(Selection.Cells(1).Range.Text)
        If iStartNum <> 0 Then
            iStartNum = iStartNum + 1

            For J = RowNum + 1 To ActiveDocument.Tables(1).Rows.Count
                ActiveDocument.Tables(1).Cell(J, ColNum).Range.Text = iStartNum
                iStartNum = iStartNum + 1
            Next
        Else
            MsgBox "Cell doesn't contain a non-zero starting number."
            Exit Sub
        End If
    Else
        MsgBox "Not in table"
    End If
End Sub

To use the macro, just put a starting sequence value into a cell of the table and leave the insertion point in that cell. When you then run the macro, all the cells under that starting cell are filled with sequential values. (Anything previously in those cells is deleted.)

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (89) applies to Microsoft Word 2007, 2010, 2013, and 2016.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Inserting and Deleting Footnotes

Footnotes are essential in some types of writing. When you need to add footnotes to your documents, you'll appreciate the ...

Discover More

Printing a Key Assignment List

When you create custom shortcut keys in Word, you may (at some point) want to get a printout of what those key ...

Discover More

Using a Custom Date Format in a Header or Footer

Need to show a custom date in the header or footer of a printout? You'll need to resort to using a macro, as described in ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (ribbon)

Unwanted Numbering on Pasted Tables

When pasting text from another document or from the Web you can have unexpected characters sometimes show up. Many of ...

Discover More

Copying All Tables to a New Document

Need to make a copy of every single table in a document? There's a quick and easy way to do it using the macro in this tip.

Discover More

Keeping Table Rows Together

When you create a table that extends beyond a single page, you may want to make sure that the information in a table row ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

2019-10-29 13:45:07

Jen

Hello! I have a table in Word with a number sequence where the highest number is in the top row. When I add a row above the top row, is there a way to automatically number the appropriate cell with one number higher in the sequence? Thanks!


2019-06-05 02:32:41

Alexander Angelov

Thank you Allen, from the heart ... and from Bulgaria :)


2019-03-28 13:17:43

Robin

What I wanted to do was to make a table listing numbered, one-use key tags and these numbers were seven digits long (but sequential!) Word doesn't allow me to start numbering at "0478741" using the built-in numbering feature. I couldn't get the second option to work at all, even though I followed your instructions carefully. I tried Excel to do the numbering, but then couldn't get an Excel file to convert into a nice printed Word document.


2017-04-24 04:22:50

Ken Endacott

An easier way is to setup the table in Excel and use the Excel features to create sequential numbering. The cells making up the whole table can then be selected and copied into a Word document using CTRL/C and CTRL/V which will create a table in Word. Column widths and borders can be set up in Excel and cells can be filled in before copying to the Word document.

If the table already exists then select the table, copy to Excel, setup the numbering and copy the table back to Word.

As well as sequential numbers, Excel can create sequential dates and perform arithmetic on the cell contents.


2017-04-23 07:16:54

Debby D.

For years, I've applied an autonumbered style to the first cell I want to be sequentially numbered. When I add rows, the cells immediately below continue that same numbered style whether I add them by tabbing from the end of the last row or by using the commands to inserts rows above or below. Because the numbering is part of a style, it can continue from one table to another, but it can always be restarted. I can even skip a row by changing the style for the particular cell or by just toggling off the numbering. I also use it to show two levels of numbering in a single cell by creating two autonumbered styles in a hierarchy that works just like Heading 1 and Heading 2.


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.