Where Is The Eraser For Tables On Word Mac



How to remove/delete all tables from a document in Word

Remove all tables in Word is usually applied in daily office working, and how can you quickly remove all tables? This tutorial will introduce three simple ways for you to remove all tables.

First-class tool helps you one click to remove all tables from a Word document

Click and the table appears in the document. If you need to make adjustments, you can Add or delete rows or columns in a table in Word or PowerPoint for Mac or merge cells. When you click in the table, the Table Design and Layout tabs appear. On the Table Design tab, choose different colors, table styles, add or remove borders from the table. Click and drag to select the table lines you want to erase. Click on the Eraser tool again (on the toolbar) or press the Esc key. This turns off the Eraser tool. Close the Tables and Borders toolbar when finished. You should note that when you erase a line that is a common border between two cells, the two cells are merged. This method reportedly works on Microsoft Word 2010, 2013, 2016, 2019, and 365. However, the aforementioned feature should be available on older versions of Word as well. Another way to remove the table while maintaining the text is by copying the text and paste as a text. That way, the table will not be included when pasting.

Download

Where Is The Eraser For Tables On Word Mac 2017

Generally speaking, it's easy to remove a table in Word. However, it will time-consuming and tedious to remove multiple tables one by one manually. Here, with the Remove Tables feature of Kutools for Word, you can easily remove all tables from a certain selection or the entire Word document with only one click! Click for 60-day free trial!

Kutools for Word: a powerful add-in contains 100+ tools, and it can boost 80% work efficiency in your Word daily working! Get It Now!

Recommended Productivity Tools for Word

More Than 100 Powerful Advanced Features for Word, Save 50% Of Your Time.

Bring Tabbed Editing And Browsing To Office (Include Word), Far More Powerful Than The Browser's Tabs.

Eraser

Remove a table manually in Word

Actually, you can remove a table manually in Word. Please do as follow:

Where

This method will remove one table at a time. If you need to remove all tables in bulk, please visit below VBA or Kutools.

In the Word, put cursor into the specified table to activate it, next click the cross at the top-left corer of the table to select the whole table, and then select Delete > Delete Table to remove it. See screenshot:

Note: You can also put the cursor into the specified table to activate it, and then click Layout > Delete > Delete Table to remove this table. See screenshot:

Remove all tables with VBA

It will be time-consuming to remove multiple tables one by one manually with above method. Here, this method will introduce a VBA to batch remove all table from the current Word document at once. Please do as follows:

Where Is The Eraser For Tables In Word

1: Press Alt+F11 to open the Microsoft Visual Basic for Applications window;

2: Click Insert > Module, and paste below VBA code into the Module window;

VBA: Remove all tables from the current Word document

3: Click Run button or press F5 key to apply the VBA.

Remove all tables with Kutools for Word

Some users may not be familiar with VBA code. Take it easy! Kutools for Word's Remove Tables utility will help you remove all tables from a certain selection or the whole document at once with only one click!

Word

Kutools for Word: a powerful add-in contains 100+ tools, and it can boost 80% work efficiency in your Word daily working! Get It Now!

Just click Kutools > Remove > Remove Tables, and all tables will be removed from the current Word document immediately.
Note: If you want to remove all tables from a certain selection, please select the part of document firstly, and then click Kutools > Remove > Remove Tables.

Relative articles:

Recommended Word Productivity Tools

Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time

  • Complicated and repeated operations can be done one-time processing in seconds.
  • Insert multiple images across folders into Word document at once.
  • Merge and combine multiple Word files across folders into one with your desired order.
  • Split the current document into separate documents according to heading, section break or other criteria.
  • Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on...
or post as a guest, but your post won't be published automatically.
Loading comment... The comment will be refreshed after 00:00.
  • To post as a guest, your comment is unpublished.
    The keyword For is missing from the line number 3.
    The correct code is:
    Sub Removetables ()
    Dim oTable As Table
    [b]For[/b] Each oTable In ActiveDocument.Tables
    oTable.Delete
    Next oTable
    End Sub
    • To post as a guest, your comment is unpublished.
      Thank you @anon
      It works.............
  • To post as a guest, your comment is unpublished.
    The VBA code does not work. I get 'Compile error: Syntax error'.