View Single Post
 
Old 05-17-2022, 02:57 PM
macropod's Avatar
macropod macropod is offline Windows 10 Office 2016
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,340
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Cleaning up the content is as simple as:
Code:
Sub Demo()
Application.ScreenUpdating = False
With ActiveDocument.Range.Find
  .ClearFormatting
  .Replacement.ClearFormatting
  .Format = False
  .Forward = True
  .Text = "[\[\]\*“”""""]"
  .MatchWildcards = True
  .Replacement.Text = ""
  .Execute Replace:=wdReplaceAll
End With
Application.ScreenUpdating = True
End Sub
A forum search will turn up macros for deleting empty table rows.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote