Written by Allen Wyatt (last updated September 12, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
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:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13825) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.
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!
Need a quick way to hide and unhide columns in a worksheet? The shortcuts described in this tip can help fill the bill.
Discover MoreDo you want to set a column's width based on whatever is in the currently selected cell? There are actually a number of ...
Discover MoreAre you a keyboard-only user wondering how you can set column width or row height without using the mouse? This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
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.
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments