Written by Allen Wyatt (last updated November 16, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021
When Carolyn inserts a table, she always needs to manually configure the new table so that it doesn't automatically resize depending on contents. (She needs to display the table's properties and, on the Table tab, click Options to get to the setting.) This is very tedious, as Carolyn almost never wants the Automatically Resize to Fit Contents check box to be selected, but Word seems to insist on turning on the option.
There are two ways you can handle this. First, you can create a table style, if desired, that can contain this setting. Here are the general steps:
Once defined, the table style can be used to format other tables rather easily, and each will have the settings desired.
The second way to approach this is by creating a small macro that will make sure the setting is set correctly. This example changes the setting in all tables in the document:
Sub DisableAutoFit() Dim Tbl As Table Application.ScreenUpdating = False For Each tbl In ActiveDocument.Tables Tbl.AllowAutoFit = False Next Application.ScreenUpdating = True End Sub
Since the macro steps through all tables, it is especially helpful when you are working with documents created by others. The macro can, of course, be added to the Quick Access Toolbar or associated with a keyboard shortcut.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11967) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
In WordPerfect terminology, a split page allows you to put information side-by-side on opposite halves of the page. If ...
Discover MoreIf you import information into a document from another program, the values you import may not be exactly to your liking. ...
Discover MoreWhen you get a text file from a program other than Word, tabular information may be formatted with nothing but spaces in ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-11-18 04:18:30
Alan
I was going to suggest the first method, but the option (Automatically resize to fit contents) is always greyed out in the Table Style. In both the existing Styles and a new Style.
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments