Where Is The Eraser For Tables On Word Mac

When you insert or draw a table, Word automatically adds black borders. You can change the borders or remove them. Remove all borders. Click in any cell to show the table move handle in the upper left corner of the table. Add mathematical equations in Pages on Mac. You can include mathematical expressions and equations in your document. To add an equation, you compose it in the Pages equation dialog using LaTeX commands or MathML elements, then insert it into your document. When you add an equation in a word-processing document, you can choose to place it inline with the text, so that it sits on the same line.

How to remove empty rows and columns from tables in Word?

How can you remove the all empty rows and columns from tables in Word? This tutorial will show you several ways to remove empty rows and columns from tables in Word document.

  1. Click the “Layout” tab under “Table Tools”. Click “Delete” in the “Rows & Columns” section and select “Delete Table” to delete the table. You can also use the “Delete Columns” and “Delete Rows” options to delete the entire table as long as the entire table is selected.
  2. 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.
  3. In my version of MS Word, if the cell data is highlighted and cut the cells remain intact, but the data is removed. You can cut data in several ways: using the scissors icon on the ribbon at the top of the page, or + X on a PC + X on a mac; right click the mouse and select cut from the pop-up menu.

Remove all empty rows and columns from tables with one click

Manually remove all empty rows and columns from tables

Microsoft Office Word does not provide a convenient way to remove empty rows and columns, and you need to remove them by manually select each empty row and column and then delete them one by one.

Step 1: Select the empty row or empty column you want to delete. See screenshot:

Step 3: Under Table Tools, click the Layout Tab;

Step 4: In the Rows & Columns group, click Delete Rows or Delete Columns.

Remove all empty rows and columns from tables by using VBA code

The Macro Function of Word provides a much more convenient way to remove all empty rows and columns from tables in document. You can remove all empty rows and columns as follows.

Step 1: Press “Alt-F11” to open the Microsoft Visual Basic for Application window;

Step 2: Click Module on the Insert tab, copy and paste the following VBA code into the Module window;

Step 3: Then click Runbutton to apply the VBA.

The VBA code to remove all empty rows and columns from tables:

Sub DeleteEmptyTablerowsandcolumns()
Application.ScreenUpdating = False
Dim Tbl As Table, cel As Cell, i As Long, n As Long, fEmpty As Boolean
With ActiveDocument
For Each Tbl In .Tables
n = Tbl.Columns.Count
For i = n To 1 Step -1
fEmpty = True
For Each cel In Tbl.Columns(i).Cells
If Len(cel.Range.Text) > 2 Then
fEmpty = False
Exit For
End If
Next cel
If fEmpty = True Then Tbl.Columns(i).Delete
Next i
Next Tbl
End With
With ActiveDocument
For Each Tbl In .Tables
n = Tbl.Rows.Count
For i = n To 1 Step -1
fEmpty = True
For Each cel In Tbl.Rows(i).Cells
If Len(cel.Range.Text) > 2 Then
fEmpty = False
Exit For
End If
Next cel
If fEmpty = True Then Tbl.Rows(i).Delete
Next i
Next Tbl
End With
Set cel = Nothing: Set Tbl = Nothing
Application.ScreenUpdating = True
End Sub

Remove all empty rows and columns from tables with one click

Kutools for Word provides you the most convenient way to remove all empty rows and columns from tables in document. You just need to click once, and Kutools for Word' sDelete Rows/Columns utility will remove all empty rows and columns from all or selecetd tables for you quickly.

Kutools for Word,with more than 100 handy functions, makes your jobs easier.

After installing Kutools for Word, please do as below:(Free Download Kutools for Word Now!)

1. Click Kutools Plus > Delete Rows/Columns on the Table pane.

Where Is The Eraser For Tables On Word Mac Pro

2. Then a dialog pops out, choose the scope that you want to remove tables from in the Look in section, then check Row option and Blank row option, or check Column option and Blank row option as you need. If you want to delete all blank rows and columns, you need to apply this operation twice.

Now a dialog pops out to remind you how many tables have been dealed with, click OK to close, and the blank rows and columns have been removed from tables.

Tip.If you want to remove blank rows from Excel sheet, the Delete Blank Rows utility of Kutools for Excel can help you.

Where Is The Eraser For Tables On Word Mac Free

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.
Where is the eraser for tables in word
Loading comment... The comment will be refreshed after 00:00.
  • To post as a guest, your comment is unpublished.
    You just saved me a zillion hours of frustration, THANK YOU!
  • To post as a guest, your comment is unpublished.
    u know you can just resize the table right? just filter and sort your data to top check how many rows have data, click table tools and the click resize and adjust the last number to whatever you need OR go to the bottom of the table the very last cell and use the tine blue triangle to drag and resize,
    • To post as a guest, your comment is unpublished.
      Except I have multiple page document with a table with varying information in each. Furthermore, it is a merge document so different each week. I need an automated method :)
  • To post as a guest, your comment is unpublished.
    Hi, the macro is working, BUT:
    After deleting all rows, all the columns of the tables with empty rows open up very wide.
    How can i fix the code so that this does not happens?
    I am using Office 2016.
    Thank you!
  • To post as a guest, your comment is unpublished.
    Hi All,
    I am looking for function in word wherein, if I remove specific word then it should remove that row as well.
  • To post as a guest, your comment is unpublished.
    Thanks for the code, really useful.
  • To post as a guest, your comment is unpublished.
    Is there a macro that will delete a row if only one of the cells in that row is empty or contains a zero?
  • To post as a guest, your comment is unpublished.
    thanks for the macro, it was really helpful..
  • To post as a guest, your comment is unpublished.
    Thanks for the macro. It worked like a charm!
  • To post as a guest, your comment is unpublished.
    Hello developers - I have this macro which sits in a button and when clicked (the macro) removes the table directly above the button. Can this be fixed so that the macro only works once? Ie. if there are 2 tables in the document only 1 is deleted - then the macro ceases to work... can you advise?
    Sub tableDelete()
    '
    ' tableDelete Macro
    'Dim nTables As Integer
    nTables = ActiveDocument.Tables.Count
    ActiveDocument.Tables(nTables).Delete
    '
    End Sub
    • To post as a guest, your comment is unpublished.
      [quote name='Andy Harris']Hello developers - I have this macro which sits in a button and when clicked (the macro) removes the table directly above the button. Can this be fixed so that the macro only works once? Ie. if there are 2 tables in the document only 1 is deleted - then the macro ceases to work... can you advise?
      Sub tableDelete()
      Dim nTables As Integer
      nTables = ActiveDocument.Tables.Count
      ActiveDocument.Tables(nTables).Delete
      End Sub[/quote]
      Please try to use this VBA to delete all tables from current document in Word.
      [i]Sub tableDelete()
      Dim aTable As Table
      For Each aTable In ActiveDocument.Tables
      aTable.Delete
      Next
      End Sub[/i]

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

Where Is The Eraser For Tables On Word Mac Youtube

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

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.

Remove a table manually in Word

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

Mac

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:

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

Where is the eraser for tables on word mac computer

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!

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

Where Is The Eraser For Tables On Word Mac Shortcut

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.

Where Is The Eraser For Tables On Word Mac Free

  • 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'.