WD97: "Replace With" Format Incorrect with Recorded Macro

Last reviewed: February 25, 1998
Article ID: Q162207
The information in this article applies to:
  • Microsoft Word 97 for Windows

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:

  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 on 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 the recorded macro is run, 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 engineers 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/default.asp

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, use the following steps:

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

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

  3. Click the Edit button.

  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.

    For 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. Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

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

REFERENCES

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: vb vba vbe
Keywords : kbualink97 kbclone kbwordvba word8 word97 kbprg
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbbug
Solution Type : kbpending


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 25, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.