If you have the code to locate and select the name, the following will
delete all occurences of it in the document:
Dim mystr As String
mystr = Selection.Text
Selection.HomeKey wdStory
Selection.Find.ClearFormatting
With Selection.Find
Do While .Execute(FindText:=mystr, MatchWildcards:=False,
Replacewith:="", Wrap:=wdFindContinue, Forward:=True, Replace:=wdReplaceAll)
= True
Loop
End With
To set up a batch process to handle all of the documents, see the article
"Find & ReplaceAll on a batch of documents in the same folder" at:
http://word.mvps.org/FAQs/MacrosVBA/BatchFR.htm

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
>I have several thousand documents from which I want to remove the
> identifying names in the text. For each document, I can easily
[quoted text clipped - 11 lines]
> Thanks,
> JM
Jim Michelson - 10 Sep 2004 16:15 GMT
Thanks. This looks like it should do what I want. I'll let you know.
Jim
> If you have the code to locate and select the name, the following will
> delete all occurences of it in the document:
[quoted text clipped - 14 lines]
>
> http://word.mvps.org/FAQs/MacrosVBA/BatchFR.htm