It is quite convenient to visit online resources by clicking hyperlinks in Word, but sometimes, it is troublesome, especially when the hyperlinks can be easily triggered and opened by mistakes. And that is the reason why there are so many users want to remove hyperlink in Word on mac.
- Delete Table Of Contents Word
- Word Table Of Contents Options
- Word Table Of Contents Troubleshooting
- Clear Contents Of Table In Word Mac
- Creating A Table Of Contents In Word
To remove hyperlink in Word one by one or via shortcut, here we collect 3 ways, easy yet feasible.
#1 Remove Hyperlink in Word on Mac One By One
I've just finished to edit a book with OOwriter. Everything is OK, but I noticed that inserting fields (page # and chapt. Name) in the headers generate (unwanted) entries in the Table of Contents. Of course I can easily delete these entries on the file and if I do not update the index they don't appear.
- In the Field Properties area, click the Table of Contents button to open the Table of Contents dialog. Click the Table of Contents tab. Under the General section near the bottom of the dialog, in the Show levels option, decrease the number of levels to 1 (if you want only Heading1 entries in your TOC) or set it to two (if you want Heading1.
- How to Delete a Table of Contents in Microsoft Word. Webucator provides instructor-led training to students throughout the US and Canada. We have trained over 90,000 students from over 16,000 organizations on technologies such as Microsoft ASP.NET, Microsoft Office, Azure, Windows, Java, Adobe, Python, SQL, JavaScript, Angular and much more.
- Open the Word file;
- Right click on the hyperlink, choose Hyperlink>Edit Hyperlink>Remove Link.
- Go to File>Save. Done.
#2 Remove All Hyperlinks in Word on Mac via Shortcut

If you want to remove all the hyperlinks in Word on mac fast and easy, here is the shortcut to finish this task.
- Open Word on Mac;
- Press Command+A to select the whole Word file;
- Press Command+Shift+A to remove all hyperlinks.
#3 Remove Hyperlink by Copy & Paste
Another way to remove hyperlink in Word on mac is copying the hyperlink as text then paste to Word file, and there are 2 methods can help.
Method 1 Copy and Paste in Worde in Word
- Open Word file on Mac;
- Copy the contents with hyperlink;
- Then right click on the copied area, choose Paste Special>Unformatted Text;
- Then go to File>Save. Done.
Method 2. Copy and Paste in TextEdit
- Open Word file on Mac;
- Copy the contents with hyperlink;
- Go to Finder>Applications, find and launch TextEdit;
- Then paste to TextEdit;
- Then copy the contents in TextEdit and re-paste to Word to replace the part with hyperlinks;
- Go to File>Save. Done.
Final Words
As you can see, it is so easy to remove hyperlinks in Word on mac. Also, there are some paid tools allowing users to remove hyperlinks. Now that you have several free options to remove the hyperlinks, it will be unnecessary for such an investment.
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.
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.
Delete Table Of Contents Word
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.

Demo : Remove blank rows and columns from tables in word
Tip.If you want to remove blank rows from Excel sheet, the Delete Blank Rows utility of Kutools for Excel can help you.
Recommended Word Productivity Tools
Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time
Word Table Of Contents Options
- 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...

Word Table Of Contents Troubleshooting
or post as a guest, but your post won't be published automatically.
Clear Contents Of Table In Word Mac
Creating A Table Of Contents In Word
- 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]