How can I change a name throughout a lengthy contract?

C

Craftladyaz

How can I change a name throughout a lengthy contract? Is there a way to
change a name throughout the whole document without doing each one separately?
 
J

Jay Freedman

Craftladyaz said:
How can I change a name throughout a lengthy contract? Is there a
way to change a name throughout the whole document without doing each
one separately?

Edit > Replace. Enter the name to find, and the name to replace it with.
Click the Replace All button.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
G

Graham Mayor

While Jay has covered the immediate issue, if you are going to have to do
this regularly, insert a REF Field in the document eg {REF Name
\*Charformat}. Copy that field to the clipboard, then replace the name in
the document with the content of the clipboard i.e. ^c

Add an Ask field to the start of the document { ASK Name "Insert name" }

Add the following macro TO THE DOCUMENT

Sub AutoNew()
Dim oStory As Range
Dim oField As Field
For Each oStory In ActiveDocument.StoryRanges
For Each oField In oStory.Fields
oField.Update
Next oField
Next oStory
End Sub

http://www.gmayor.com/installing_macro.htm

Save the resulting document as a template.

Create new contract documents from the template.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top