WD98: "Replace With" Format Incorrect with Recorded Macro

ID: Q181843

The information in this article applies to:

SYMPTOMS

When you run a macro that was recorded to find and replace formatting, the "Replace With" formatting will be applied to the text located at the insertion point.

CAUSE

When you use the Find or Replace commands on the Edit menu, you can specify formatting by choosing that formatting item from one of the built-in toolbars.

For example, to find all paragraphs formatted for center alignment, follow these steps:

1. In the Find and Replace dialog box, click the Find What box.

2. Click the Center Alignment button on the Formatting toolbar.

This will apply center alignment as a search criteria.

When you record a macro to perform these steps, the action of clicking the formatting button is recorded as part of the Edit or Replace command, as expected. However, these actions are also recorded as separate commands in the macro. When you run the recorded macro, this results in the Replace With formatting being applied to the area where the search begins.

For example, if you have the following text in your document

   This is paragraph one that is left-aligned.
               This is paragraph two that is center-aligned.
   This is paragraph three that is left-aligned.

and, for this example,

- The search criteria in the recorded macro for Find What is set to

  Center Alignment.

- The Replace With criteria is set to Right Alignment.

- The insertion point is in the first paragraph prior to running the

  macro.

the result will format both paragraphs one and two with right alignment, as in the following example:

                          This is paragraph one that was left-aligned.
                          This is paragraph two that was center-aligned.
This is paragraph three that is left-aligned.

WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/

Method 1: Use the Format Button in the "Find and Replace" Dialog Box

In the Find And Replace dialog box, use the Format button to set the Find What and Replace With criteria. (The Format button is located at the bottom of the "Find and Replace" dialog box.)

Method 2: Edit the Recorded Macro and Remove the Extra Commands

You can remove or disable the formatting commands that were applied when you recorded the macro.

To edit the macro, follow these steps:

1. On the Tools menu, point to Macro, and then click Macros.

2. In the list of available macros, select the macro to edit.

3. Click Edit.

4. In the Visual Basic Editor window, scroll through the macro until you

   see commands similar to the following:

      Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
      Selection.ParagraphFormat.Alignment = wdAlignParagraphRight
      Selection.Find.ClearFormatting
      Selection.Find.ParagraphFormat.Alignment = wdAlignParagraphCenter
      Selection.Find.Replacement.ClearFormatting
      Selection.Find.Replacement.ParagraphFormat.Alignment = _
         wdAlignParagraphRight
      With Selection.Find

5. Comment the two lines of code prior to Selection.Find.ClearFormatting
   by adding an apostrophe at the beginning of the lines.

   Example:

      'Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
      'Selection.ParagraphFormat.Alignment = wdAlignParagraphRight
      Selection.Find.ClearFormatting

6. On the File menu, click "Close and Return to Microsoft Word."

STATUS

Microsoft has confirmed this to be a problem in the products listed at the beginning of this article.

REFERENCES

For additional information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q173707
   TITLE     : OFF97: How to Run Sample Code from Knowledge Base Articles

For more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q163435
   TITLE     : VBA: Programming Resources for Visual Basic for
               Applications

Additional query words: wordcon vb vba vbe
Keywords          : kbmacro kbdta kbdtacode OffVBA kbmacroexample macword98 
Version           : MACINTOSH:98
Platform          : MACINTOSH
Issue type        : kbbug
Solution Type     : kbpending

Last Reviewed: April 7, 1999