Sub CommentWord()
'list of keywords to find
Dim xl As Object
Dim w As Long
Dim wdKeywords() As String
Set xl = CreateObject("Excel.Application")
xl.Workbooks.Open ("C:\WordList.xls") 'set to path and file name of your excel file
w = 0
While xl.Sheets(1).Cells(w + 1, 1) <> "" 'assume 1st worksheet in workbook has the word list; words start at cell A1
ReDim Preserve wdKeywords(1, w)
wdKeywords(0, w) = xl.Sheets(1).Cells(w + 1, 1) 'store word
wdKeywords(1, w) = xl.Sheets(1).Cells(w + 1, 2) 'store comment text
w = w + 1
Wend
xl.ActiveWorkbook.Close 2
xl.Quit
Dim wdRange As Range
Dim wdComment As Comment
Dim blnCommentTextFound As Boolean
'cycle through each keyword
For w = 0 To UBound(wdKeywords, 2)
'search body of document
For Each wdRange In ActiveDocument.Range.Words
blnCommentTextFound = False
'if keyword found
If LCase(Trim(wdRange.Text)) = LCase(wdKeywords(0, w)) Then
'check if standard comment text has already been added
For Each wdComment In wdRange.Comments
If wdComment.Range.Text = wdKeywords(1, w) Then
blnCommentTextFound = True
Exit For
End If
Next wdComment
'if standard comment text has not been added then add it to the keyword
If Not blnCommentTextFound Then wdRange.Comments.Add Range:=wdRange, Text:=wdKeywords(1, w)
End If
Next wdRange
Next w
End Sub
|