4 Ways to Quickly Add Multiple Rows or Columns to an Existing Word Table

In this article, we would like to introduce you with 4 ways to quickly add multiple rows or columns to an existing Word table.

Every so often, we would find additional rows or columns are needed for an existing table. Certainly, there are a number of methods to realize it. And we here provide you 4 quick ways to do that.

Method 1: Add Multiple Rows with “Tab” Key

  1. Firstly, put your cursor outside the end of the last row of a table.
  2. Then press “Tab” key to get as many rows as you need.

Method 2: Add Multiple Rows or Columns with Contextual Menu

  1. At first, select a number of rows or columns.
  2. Next right click and choose “Insert”.
  3. Then choose the right command as you need. The number of rows or columns is as the same as that of the rows or columns you selected at the very first.Right Click->Choose "Insert"->Choose CommandInsert Rows Above

Besides, there are also the shortcuts for inserting columns. Press “Alt”, “J”, “L”, and “L” can insert columns to the left of the selection. And press “Alt”, “J”, “L”, and “R” can insert columns to the right of the selection.Insert Column to the Right

Method 3: Add Multiple Rows with “Insert Table” Option

  1. To begin with, click “Layout” and check the column width in “Cell Size” group. And put cursor right at the head of the line below the last row of table.Click "Layout"->Check the Column Width
  2. Secondly, click “Insert” tab.
  3. Then click “Table” icon.
  4. Next, choose “Insert Table” option on the drop-down menu.Click "Insert"->Click "Table"->Choose "Insert Table"
  5. In “Insert Table” dialog box, enter the number of columns and rows. Remember the number of columns as the same as the existing table.
  6. Then input the column width you get in step 1.
  7. Click “OK”.Enter the Number of Rows and Columns->Enter Column Width->Click "OK"

You will find 2 tables automatically merge into one.Insert Table with "Insert Table" Option

Method 4: Add Multiple Rows or Columns with Macro

  1. First off, select a row then press “Alt+ F11” to trigger the VBA editor.
  2. Click “Normal” then “Insert”.
  3. Next choose “Module”.Click "Normal"->Click "Insert"->Click "Module"
  4. Double click on the new module to open the editing area.
  5. Then paste the following codes:
Sub AddRowsAbove()
  Dim nNumber As Long
 
  If Selection.Information(wdWithInTable) = True Then
    nNumber = InputBox("Input the number of rows you want to add:", "Add Rows to the selection")
    Selection.InsertRowsAbove NumRows:=nNumber
  End If
End Sub
  1. Hit “Run”.Run the AddRowsAbove Macro
  2. In the input box, enter the number of rows you want and click “OK”.Enter Number->Click "OK"

Now there will be 2 blank rows above the first row in the table. And if you want to add rows below a selected one, simply change the “InsertRowsAbove” to “InsertRowsbelow”.

Additionally, here is the macro to add columns:

Sub AddColumnsToLeft()
  Dim nNumber As Long 

  If Selection.Information(wdWithInTable) = True Then 
    Selection.InsertColumns
  End If
End Sub

You should first select a number of columns then run the macro with the steps above. You can then get new columns. The above macro adds columns to the left of the selection. To add columns to the right selection, you need to replace “InsertColumns” with “InseertColumnsRight”.

Take Care of Word Files

There can be errors or mistakes occurring in Word, result in the collapse of the software. More often than not, it’s not only our time that is wasted but also amounts of priceless data. When it gets that far, you will definitely need a tool to recover docx.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including Excel recovery and pdf repair software products. For more information visit www.datanumen.com

3 responses to “4 Ways to Quickly Add Multiple Rows or Columns to an Existing Word Table”

  1. Hello to all, how is the whole thing, I think every one is getting more from this site, and your views are pleasant in favor of new viewers.

Leave a Reply

Your email address will not be published. Required fields are marked *