well is here a macro macropod
developed
Dim docCurrent As Document
Dim wrdRef As Object
Application.ScreenUpdating = False
Options.DefaultHighlightColorIndex = wdBrightGreen
Set docCurrent = ActiveDocument
sCheckDoc = "c:\checklist.doc"
Set docRef = Documents.Open(sCheckDoc)
docCurrent.Activate
With docCurrent.Content.Find
.ClearFormatting
With .Replacement
.ClearFormatting
.Highlight = True
.Text = "^&"
End With
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
For Each wrdRef In docRef.Words
If Asc(Left(wrdRef, 1)) > 32 Then
.Text = "<" & Trim(wrdRef) & ">"
.Execute Replace:=wdReplaceAll
End If
Next
End With
docRef.Close
Application.ScreenUpdating = True
End Sub
how should i modify that to exclude certain words?