It seems it’s impossible to do it from the user interface. But I found here that it could be done using a VB Macro:
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
| <span class='line'>Sub ChangeAllTablesToNormal()
</span><span class='line'>Dim myTable As Table
</span><span class='line'> For Each myTable In ActiveDocument.Tables
</span><span class='line'> myTable.Select
</span><span class='line'> Selection.Style = ActiveDocument.Styles("Normal")
</span><span class='line'> Next myTable
</span><span class='line'> ActiveDocument.Repaginate
</span><span class='line'>End Sub</span>
|
You may try to change ActiveDocument.Styles("Normal") to ActiveDocument.Styles("Tables Normal") as suggested by Abhishek if it doesn’t work for you.
|