How to Remove Buttons from Word Insert Table Drop-down
A user on a Microsoft Tech Community forum recently asked: “I find the ‘Quick Tables’ and ‘Draw Table’ options in the Insert Table drop-down really distracting. I never use them and keep clicking them by accident. Is there a way to hide these specific buttons from the menu without removing the whole table feature?”
The “One-Click” Reality Check
Section titled “The “One-Click” Reality Check”In Microsoft Word, the Insert > Table menu is a “Built-in Gallery.” Because of how the Fluent UI (the Ribbon) is designed, you cannot simply right-click a button inside that specific drop-down and select “Remove.”
To achieve a cleaner interface, you have two choices:
- The UI Method: Hide the default “Tables” group and create a custom one with only the buttons you want.
- The Advanced Method: Use Ribbon XML (RibbonX) to surgically disable specific control IDs.
For 99% of users, Method 1 is the safest and most effective way to “make buttons disappear.”
Step-by-Step: Replacing the Default Table Menu
Section titled “Step-by-Step: Replacing the Default Table Menu”This method involves hiding the standard “Tables” group and replacing it with your own version that excludes the cluttered options.
- Open Ribbon Options: Right-click anywhere on the Ribbon and select Customize the Ribbon….
- Hide the Original Group:
- In the right-hand list under Main Tabs, expand Insert.
- Uncheck the box next to Tables. This hides the entire default table menu.
- Create a Custom Group:
- With the Insert tab still selected, click the New Group button at the bottom.
- Click Rename and call it
My Tables(or justTables).
- Add Specific Commands:
- In the left-hand drop-down “Choose commands from,” select All Commands.
- Scroll down and find the specific table tools you actually use (e.g.,
Insert Table...). - Click Add >> to move it into your new group.
- Save Changes: Click OK. Your “Insert” tab will now show only the table buttons you chose.
Comparison of Methods
Section titled “Comparison of Methods”| Feature | Standard “Insert Table” Gallery | Custom Group Method | RibbonX (XML) Method |
|---|---|---|---|
| Effort | Default | Low (5 mins) | High (Coding required) |
| Visuals | Includes Grid + 4 Buttons | Icons only | Exact gallery modification |
| Reversibility | N/A | High (Reset Ribbon) | Moderate (Delete script) |
| Recommended For | General Users | Productivity Seekers | IT Administrators |
Advanced: Disabling Controls via RibbonX
Section titled “Advanced: Disabling Controls via RibbonX”Tested on Word for Microsoft 365 (Version 2405) as of June 2024.
If you are comfortable using the Office Custom UI Editor, you can target the specific control IDs. To “disappear” the Draw Table button specifically, you would use a getVisible callback or set visible="false" for the following IDs in your XML:
<!-- Example XML to hide specific table gallery elements --><customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <ribbon> <tabs> <tab idMso="TabInsert"> <group idMso="GroupTableInsert"> <control idMso="TableDrawTable" visible="false" /> <control idMso="TableQuickTablesGallery" visible="false" /> </group> </tab> </tabs> </ribbon></customUI>Common Traps & Troubleshooting
Section titled “Common Traps & Troubleshooting”- “My Insert Table grid is gone!”: When you add the command
Insert Tableto a custom group, it often adds the dialog box launcher rather than the interactive 10x8 grid. If you want the grid back, you must add the command labeledTable(with the grid icon) from the “Commands Not in the Ribbon” list. - The “Contextual Tabs” confusion: Remember that removing buttons from the Insert tab does not affect the Table Design or Layout tabs that appear once a table is created. Those must be edited separately if they also bother you.
Frequently Asked Questions
Section titled “Frequently Asked Questions”Can I apply these changes to Word Online? No. The web version of Word has a fixed Ribbon interface. Customizing groups and hiding specific gallery buttons is currently restricted to the Desktop versions for Windows and macOS.
What if I mess up and lose all my tools? Don’t panic. Go to File > Options > Customize Ribbon. At the bottom of the window, next to “Customizations,” click the Reset button and select Reset all customizations. This will return Word to its out-of-the-box state.
Can I automate this across my whole team?
Yes. If you use the RibbonX (XML) method, you can save the customization into a Global Template (.dotm file) and place it in the Word Startup folder on your colleagues’ machines. This ensures everyone has the same decluttered interface.