Sub removeWaveformPoints()
'
' removeWaveformPoints Macro
' Macro recorded 03/10/98 by Scott McMorrow
'
    Selection.Find.ClearFormatting
    With Selection.Find
        .Text = "Waveform]"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    
        Do While Selection.Find.Execute = True
            Selection.MoveDown Unit:=wdLine, Count:=(8 + 75)
            Selection.HomeKey Unit:=wdLine
            counter = 0
            Do While counter < 24
                counter = counter + 1
                Selection.MoveDown Unit:=wdLine, Count:=6, Extend:=wdExtend
                Selection.Delete Unit:=wdCharacter, Count:=1
                Selection.MoveDown Unit:=wdLine, Count:=1
            Loop
            Selection.MoveDown Unit:=wdLine, Count:=7, Extend:=wdExtend
            Selection.Delete Unit:=wdCharacter, Count:=1
        Loop
    End With
End Sub
