View Single Post
 
Old 11-20-2017, 03:04 PM
gmaxey gmaxey is offline Windows 7 32bit Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,601
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey, http://gregmaxey.com/word_tips.html, 11/20/2017
Dim oRng As Range
  Set oRng = ActiveDocument.Range
  oRng.InsertBefore vbCr
  With oRng.Find
    .Text = "([^13^11])(*): "
    .MatchWildcards = True
    .Replacement.Text = "\1"
    .Execute Replace:=wdReplaceAll
  End With
  Set oRng = ActiveDocument.Range
  With oRng.Find
    .Text = " -*(^^)"
    .MatchWildcards = True
    .Replacement.Text = "\1"
    .Execute Replace:=wdReplaceAll
  End With
  ActiveDocument.Paragraphs(1).Range.Delete
lbl_Exit:
  Exit Sub
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote