Written by Allen Wyatt (last updated October 12, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
When Peg has a table with the text wrapping set for Around, and then she converts the table to text, that text ends up being in a frame. She doesn't want it in a frame; she just wants it as plain, in-line with text. Peg wonders if there is a setting to prevent the converted table from ending up in a frame.
There is no setting that controls this behavior. Word does it because it doesn't know where to put the table text relative to the regular document text, so it places it in a frame. The only way around this manually is to change the text wrapping so that the table is inline, and then do the conversion to text. You could automate this a bit by using a simple macro:
Sub ConvertTable1()
If Selection.Information(wdWithInTable) Then
Selection.Tables(1).Rows.WrapAroundText = False
Selection.Rows.ConvertToText Separator:=wdSeparateByTabs, _
NestedTables:= True
Else
MsgBox "Insertion point must be in a table."
End If
End Sub
Of course, if you choose to go the "macro route," you could use the macro to convert the table to text (which would place it in a frame) and then delete the frame. Here's the way to do that:
Sub ConvertTable2()
If Selection.Information(wdWithInTable) Then
Selection.Rows.ConvertToText Separator:=wdSeparateByTabs, _
NestedTables:= True
ActiveDocument.Frames.Delete
Else
MsgBox "Insertion point must be in a table."
End If
End Sub
Either macro produces the same result. All you need to do is make sure the insertion point is within the table and then run the macro.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (2358) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365.
The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2019. Spend more time working and less time trying to figure it all out! Check out Word 2019 For Dummies today!
Word's table editor allows you to modify the structure of tables in a wide variety of ways. If you want to add columns to ...
Discover MoreTables are a great way to organize the information in a document. If your table gets quite long, you may not want to ...
Discover MoreIf your document contains quite a few tables, you may find it helpful to jump quickly from one table to another. There ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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 © 2025 Sharon Parq Associates, Inc.
Comments