Widening a Column to a Particular Cell's Width

Written by Allen Wyatt (last updated September 18, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021


3

When Robert double-clicks the right edge of a column header, Excel widens the column to fit the widest content of any cell in that column. Sometimes, though, that is just too wide. So, Robert wonders if there is a similar feature to double-click a cell edge and have the column widen to fit the contents of just that cell, even if there is a cell in the column with wider content.

There is no built-in double-click option to do this, but there is a way. Here's the simple steps:

  1. Select the cell that contains the text.
  2. Display the Home tab of the ribbon.
  3. In the Cells group, click the Format tool. Excel displays a drop-down list of options.
  4. Choose the AutoFit Column Width option.

The result is that the column width is set so that whatever is in the selected cell is entirely visible. If you prefer a keyboard-based approach, you can press the Alt key to trigger the hot keys for the ribbon tools, and then press H, O, I. If you prefer, you can use a legacy shortcut key sequence—again, press Alt to trigger the hot keys, and then press O, C, A. Either approach will work just fine.

If you prefer a macro-based approach, then you can use the following single-line macro:

Sub ColWidthCell()
    ActiveCell.Columns.AutoFit
End Sub

The macro can, of course, be assigned to a shortcut key or to a customization of the ribbon so that it can be easily triggered.

Note:

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

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11302) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.

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

Avoiding the Update Links Message

Word allows you to establish links from one document to another. When you open a document containing these links, you may ...

Discover More

Weird Mouse Shortcut

If you like to use the mouse in your worksheet navigation efforts, you'll want to pay attention to this tip. Here you ...

Discover More

Printing without Footnotes

Want to print your document without all those footnotes included? It's not quite as easy as you might think, as this tip ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Setting Minimums and Maximums when AutoFitting Column Widths

Using AutoFit can help you maximize your use of screen space. In certain situations, though, it can make your data harder ...

Discover More

Hiding Columns Not within a Date Range

Want to automatically hide some columns that don't meet a date criterion that you set? You can't do it automatically, but ...

Discover More

Hiding Columns Based on a Cell Value

Need to hide a given column based on the value in a particular cell? The easiest way to accomplish the task is to use a ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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 3 + 1?

2021-09-18 15:27:52

J. Woolley

This Tip's macro works well when ActiveCell is not a merged cell. The following VBA is more general:

Sub SetColumnWidthByCell()
    Dim rMA As Range, rCol As Range
    Dim nC As Long, nW As Double
    Set rMA = ActiveCell.MergeArea
    nC = rMA.Columns.Count
    If nC = 1 Then
        ActiveCell.Columns.AutoFit
    Else
        rMA.UnMerge
        ActiveCell.Columns.AutoFit
        nW = ActiveCell.ColumnWidth / nC
        For Each rCol In rMA.Columns
            rCol.ColumnWidth = nW
        Next rCol
        rMA.Merge
    End If
End Sub

See My Excel Toolbox: https://sites.google.com/view/MyExcelToolbox/


2021-09-18 11:20:51

Aldo Santolla

Another macro approach could be:

Sub SetColWith()
'Shortcut key set : Ctrl+Shft+W
ActiveCell.Columns.ColumnWidth = InputBox("New column width:", "Adjust Column Width")
End Sub


2021-09-18 09:20:06

Tomek

You can also add "AutoFit Column Width" to Quick Access Toolbar. Once you find it on the Home Ribbon, just right click on it and select "Add to Quick access Toolbar"


This Site

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

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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.