I haven't encountered what you are describing and I've converted numerous
document containing tables from previous versions. However, here are some
suggestions that may make this easier on you:
- Place your insertion point in a table so the contextual Table Tools
display.
- Click the Layout tab and then click View Gridlines. This will enable you
to view the non printing table borders
- Select a table in your document (carefully click the Move handle in the
upper left corner to quickly select it) and on the Design tab click the
arrow next to Borders, and then click "No Border"
- Select the next table and press F4 to repeat your last action (which was
to remove the borders)
If your tables aren't easy to find in the document you can use the Browse
Object (the little circle between the Next and Previous buttons on your
vertical scroll bar) and select Browse by Table. Then if you use Next or
Previous button (or use Ctrl+PageDown/Ctrl+PageUp) you'll navigate the
document by the tables which can make them easier to find and select.
Now, if you want to remove all borders from all tables in a document you can
use the following macro. If you don't know what to do with it then take a
look at this article:
http://word.mvps.org/faqs/macrosvba/CreateAMacro.htm
Public Sub RemoveBorders()
Dim tbl As Table
For Each tbl In ActiveDocument.Tables
tbl.Select
With Selection
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderHorizontal).LineStyle = wdLineStyleNone
.Borders(wdBorderVertical).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
End With
Next tbl
End Sub
~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP
https://mvp.support.microsoft.com/profile/Melton
What is a Microsoft MVP?
http://mvp.support.microsoft.com/gp/mvpfaqs
Guides for the Office 2007 Interface:
http://office.microsoft.com/en-us/training/HA102295841033.aspx