WordTips (Menu Interface)
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our site focusing on the ribbon interface.
WordTips FAQ
Ask a Word Question
Make a Comment
Free Business Forms
Free Calendars
Even though you cannot be selective in your searching (previous tip), Word can be much more flexible when it comes to actually replacing information. For instance, let's say you have a document in which you have many instances of the characters X45. If you want to find these characters and replace them with a regular X and a superscripted 45, there are several ways you can go about it.
The first method involves a two-step search and replace. You can follow these general steps:
It doesn't take terribly long to do these two steps, and if you need to do them in multiple documents you can automate the process by recording a little macro that does them.
Another way to approach the problem is to create a little macro that does the actual search and replace in one pass of the document. The macro can find all occurrences of X45, select just the 45 part, make it superscript, and then go on to the next occurrence. The following macro does just that:
Sub DoX45()
Dim oRng As Range
With Selection
.HomeKey unit:=wdStory
With .Find
.ClearFormatting
.Forward = True
.text = "X45"
.Execute
While .Found
Set oRng = ActiveDocument.Range _
(Start:=Selection.Range.Start + 1, _
End:=Selection.Range.End)
oRng.Font.Superscript = True
oRng.Start = oRng.End
.Execute
Wend
End With
End With
End Sub
Finally, if you don't particularly care for macros, there is an even easier solution:
By following these steps, Word replaces all instances of X45 with the contents of the Clipboard, which happens to be the formatted version you want to use. In other words, your text is formatted in one search and replace operation.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1553) applies to the following Microsoft Word versions: 97 2000 2002 2003
Related Tips:
Add a Professional Finishing Touch! Word includes great tools that allow you to add professional-grade finishing touches to your documents. You can add indexes, tables of contents, and other special tables by using the detailed information available in this volume. Check out WordTips: Indexes and Special Tables today!