Sub Macro1() Dim oTable As Table Dim oBorder As Border For Each oTable In ActiveDocument.Tables For Each oBorder In oTable.Borders oBorder.LineStyle = wdLineStyleNone Next oBorder Next oTable End Sub