Setting Minimums and Maximums when AutoFitting Column Widths

Written by Allen Wyatt (last updated February 20, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


1

Ken has a worksheet with over 100 columns of varying widths. To make it readable, he selects the whole worksheet (except for the header row) and uses AutoFit Column Width. Some columns have a single digit and he loses the ability to read the header. Some columns have 200+ characters, so they become too wide. Ken wonders if there is a way to set a minimum (7) and maximum (50) column width for the AutoFit function.

This cannot be done natively within Excel as there is no built-in way to set the minimum or maximum. However, it is easy enough to do using a macro. Here's an example of one that will do the trick:

Sub SetColWidths()
    Dim c As Range
    Dim iMin As Integer
    Dim iMax As Integer

    iMin = 7
    iMax = 50
    Application.ScreenUpdating = False
    For Each c In Selection.Columns
        c.AutoFit
        If c.ColumnWidth < iMin Then c.ColumnWidth = iMin
        If c.ColumnWidth > iMax Then c.ColumnWidth = iMax
    Next c
    Application.ScreenUpdating = True
End Sub

In order to use the macro, simply select cells in the columns you want to affect (as Ken does), and then run the macro. It applies AutoFit to the columns and then steps through each one to make sure that nothing is narrow than 7 or wider than 50.

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 (13825) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

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

Changing How Footnote References Appear

Footnote references normally appear as superscripted digits, both in the main body of your document and in the footnotes ...

Discover More

Cleaning Up a Document that Mixes Styles with Direct Formatting

Need to get rid of direct, explicit formatting applied to a document? Here's an easy way to do it using familiar Word tools.

Discover More

Superscript and Subscript at the Same Place

Do you want a superscript and subscript character to appear directly above each other? There are multiple ways you can ...

Discover More

Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!

More ExcelTips (ribbon)

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

Double-Clicking to Widen Columns Won't Work

One way you can widen the columns in a worksheet to fit whatever is in the column is by double-clicking the right edge of ...

Discover More

Unhiding a Limited Number of Columns

If you have a bunch of hidden columns in your worksheet, you might want to unhide only a portion of those columns. This ...

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 6 + 5?

2021-02-20 10:30:33

Allen Cody

The above macro requires that columns be selected before execution. The "c.autofit" line can be removed entirely, as it is unnecessary. Change the line, "For Each c In Selection.Columns" to "For Each c In Cells.Columns" so that the subroutine will autofit all columns in the worksheet within the minimum and maximum parameters established - 7 and 50, respectively.


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.