Resize Excel Table

Visit this page to download the sample file for this video. By default an Excel table will expand autom. Using Efficient Tabs in Excel Like Chrome, Firefox and Safari! Save 50% of your time, and reduce thousands of mouse clicks for you every day! If your data is so long for the cell, you need to resize the column width of the cell. Select the cell and click Home Format AutoFit Column Width.

How to resize an existing named range in Excel?

How To Resize Excel Table In Word Document

For an existing named range, you may need to resize or expand it to include more columns and rows. In this article, we will show you three methods to resize an existing named range in Excel.

Resize an existing named range with Name Manager function
Resize an existing named range with VBA code
Resize an existing named range with Kutools for Excel

Resize an existing named range with Name Manager function

Please do as follows to resize an existing named range with Name Manager function in Excel.

After you create an Excel table in your worksheet, you can easily add or remove table rows and columns. You can use the Resize command in Excel to add rows and columns to a table: Click anywhere in the table, and the Table Tools option appears. Jun 08, 2019 For tables that are linked to a server that is running Microsoft SharePoint Foundation, you can resize the list using this method by providing a Range argument that differs from the current range of the ListObject only in the number of rows it contains.

Resize

1. Click Formulas > Name Manager. See screenshot:

2. In the Name Manager dialog box, select the range name you want to resize it, and then click the button.

3. In the Name Manager – Refers to box, select a new range for this range name, and then close this box.

4. When it returns to the Name Manager dialog box, click the button to save the new range, and finally click the Close button to close the dialog box. See screenshot:

Resize Excel Table In Powerpoint

You can see the specified named range is resized immediately.

Word

Resize an existing named range with VBA code

Excel

Besides the above method, VBA code also can help you to resize a specified named range.

1. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic Application window.

2. In the Microsoft Visual Basic Application window, click Insert > Module.

3. Paste below VBA code into the Module window.

Resize Excel Table

VBA: Resize named range

Notes:

1. “10, 6” in this line .RefersTo = .RefersToRange.Resize(10, 6) means that the specified named range will be resized to have 10 rows and 6 columns.

4. After changing the variables, press the F5 key to run the code. In the popping up dialog box, enter the range name you want to resize into the Name box, and then click the OK button.

Then the named range is resized immediately with the conditions you specified.

Resize an existing named range with Kutools for Excel

All range names are listed in the Navigation Pane of Kutools for Excel. And you can easily resize them in the Navigation Pane.

Before applying Kutools for Excel, please download and install it firstly.

1. After installing Kutools for Excel, the Navigation Pane is displayed on the left side of Excel by default. Please click the Name manager button, select a range name you want to resize, and then click the button.

2. In the popping up Kutools for Excel dialog box, select a new range for this range name, and then click the OK button.

3. Then click the button in Navigation Pane to finish the setting.

Note: If you cannot see the Navigation Pane, please click Kutools > Navigation to enable it.

The Navigation Pane of Kutools for Excel is a powerful utility, with it, you can not only resize named range easily, but also create auto text for future use, easily shift between workbooks and worksheets and so on.

If you want to have a free trial ( 30-day) of this utility, please click to download it, and then go to apply the operation according above steps.

The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
  • Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
  • Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

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!
or post as a guest, but your post won't be published automatically.
Loading comment... The comment will be refreshed after 00:00.
-->

Resizes the specified range. Returns a Range object that represents the resized range.

Syntax

expression.Resize (RowSize, ColumnSize)

Resize Excel Table In Powerpoint

expression An expression that returns a Range object.

Parameters

NameRequired/OptionalData typeDescription
RowSizeOptionalVariantThe number of rows in the new range. If this argument is omitted, the number of rows in the range remains the same.
ColumnSizeOptionalVariantThe number of columns in the new range. If this argument is omitted, the number of columns in the range remains the same.

Return value

Range

Example

This example resizes the selection on Sheet1 to extend it by one row and one column.


Resize Excel Table

This example assumes that you have a table on Sheet1 that has a header row. The example selects the table without selecting the header row. The active cell must be somewhere in the table before you run the example.

Excel

Support and feedback

How To Resize Excel Table In Word Document

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.