macro for performing more than one find and replace procedure at the same time

Anonymous
2010-08-07T18:21:24+00:00

ok, i've got to about 700!! find and replace procedures for a document of TWO MILLION words so this macro could save me about 4 hours of work.

i tried to rewrite this macro so that it would work but it didn't.  can anyone help me out

Sub Macro1()

Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = " mit der "
.Replacement.Text = " mitder"
.Text = " mit dem "
.Replacement.Text = " mitdem"
.Text = " mit den "
.Replacement.Text = " mitden"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2010-08-07T18:56:51+00:00

ok, i got it work, i just copied it over

Sub Macro1()

'

' Macro1 Macro

' Macro recorded 8/7/10 by Seely Foley

'

    Selection.Find.ClearFormatting

    Selection.Find.Replacement.ClearFormatting

    With Selection.Find

        .Text = " mit der "

        .Replacement.Text = " mitder"

        .Forward = True

        .Wrap = wdFindContinue

        .Format = False

        .MatchCase = False

        .MatchWholeWord = False

        .MatchWildcards = False

        .MatchSoundsLike = False

        .MatchAllWordForms = False

    End With

    Selection.Find.Execute Replace:=wdReplaceAll

    Selection.Find.ClearFormatting

    Selection.Find.Replacement.ClearFormatting

    With Selection.Find

        .Text = " mit den "

        .Replacement.Text = " mitden"

        .Forward = True

        .Wrap = wdFindContinue

        .Format = False

        .MatchCase = False

        .MatchWholeWord = False

        .MatchWildcards = False

        .MatchSoundsLike = False

        .MatchAllWordForms = False

    End With

    Selection.Find.Execute Replace:=wdReplaceAll

End Sub

Was this answer helpful?

30+ people found this answer helpful.
0 comments No comments

53 additional answers

Sort by: Oldest
  1. Anonymous
    2015-08-18T10:09:37+00:00

    Hi Rhonda, thanks a lot for your answer.

    I fixed the problem. It works now!  I had to change

    .MatchWildcards = True

    into

    .MatchWildcards = False

    to make the macro read the table correctly. I also added a red color to the replacements:

    .Replacement.Font.Color = wdColorRed

    So if you to use the macro for replacing words or phrases, use this code below:

    Sub ReplaceFromTableList()

    ' from Doug Robbins, Word MVP, Microsoft forums, Feb 2015, based on another macro written by Graham Mayor, Aug 2010

     Dim oChanges As Document, oDoc As Document

     Dim oTable As Table

     Dim oRng As Range

     Dim rFindText As Range, rReplacement As Range

     Dim I As Long

     Dim sFname As String

     'Change the path in the line below to reflect the name and path of the table document

     sFname = "C:\Users\your.name\Documents\Macros\FindReplaceTable.docx"

     Set oDoc = ActiveDocument

     Set oChanges = Documents.Open(FileName:=sFname, Visible:=False)

     Set oTable = oChanges.Tables(1)

     For I = 1 To oTable.Rows.Count

         Set oRng = oDoc.Range

         Set rFindText = oTable.Cell(I, 1).Range

         rFindText.End = rFindText.End - 1

         Set rReplacement = oTable.Cell(I, 2).Range

         rReplacement.End = rReplacement.End - 1

         Selection.HomeKey wdStory

         With oRng.Find

                 .ClearFormatting

                 .Replacement.ClearFormatting

                 .Replacement.Font.Color = wdColorRed

                 .MatchWildcards = False

                 .MatchWholeWord = True

                 .Text = rFindText.Text

                 .Replacement.Text = rReplacement.Text

                 .Forward = True

                 .Wrap = wdFindContinue

                 .Execute Replace:=wdReplaceAll

           End With

     Next I

     oChanges.Close wdDoNotSaveChanges

    End Sub

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-08-18T11:22:38+00:00

    Unfortunately what does not work?  Did you try:

    http://gregmaxey.mvps.org/VBA\_Find\_And\_Replace.htm

    If it behaves as you describe, give it time.  VBA procedure in long loops often show that behavior but typically it is still processing in the background and will complete.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2015-08-18T11:51:48+00:00

    yes i tried your tool and it works well.

    however, i dont want to go trough dialogs and menus selecting options and files everytime i use it, because i have many files to treat. I didnt find a way to save settings.

    This VBA macro discussed here does the same thing by hitting just one key or button.

    Best

    Tidde

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2015-08-18T23:17:23+00:00

    This macro has been incredibly helpful, especially when using the table as a database that can be constantly updated.

    Is there any way to change the code so that instead of finding and replacing, the macro finds the text in the first column and adds a new comment containing the text in the second column?

    I'm trying to use the macro for suggestions rather than hard changes, and sometimes there are multiple suggestions that vary depending on context and intent.

    Was this answer helpful?

    0 comments No comments