Word ファイルで Excel ファイルの内容 (列 A) を検索し、列 B の内容を使用してその単語にコメントを追加するにはどうすればよいでしょうか。

Word ファイルで Excel ファイルの内容 (列 A) を検索し、列 B の内容を使用してその単語にコメントを追加するにはどうすればよいでしょうか。

まず、私は VBA の基本的な知識を持っていることを述べたいと思います。

現在、開いている Excel ファイルにリンクし、開いている Word ファイルの列 A から単語を検索するマクロを Word で作成しようとしています。次に、マクロで Word のその単語にコメントを配置し、Excel ファイルの列 B の内容を挿入するようにしたいと思います。

異なるソースからの異なるコード行を組み合わせようとしましたが、うまくいかないようです。

これを行う方法を知っている人はここにいますか?

よろしくお願いします!

コメントを追加するための次のコードがあります (ただし、Excel ファイルにはリンクされていません)。

Selection.Find.ClearFormatting

Dim range As range
Set range = ActiveDocument.Content

Do While range.Find.Execute("XXXXXX") = True
ActiveDocument.Comments.Add range, "YYYYYY"
Loop

次のコードは、列 A の内容を検索し、それを列 B の内容に置き換えます。

Dim ws As Activesheet, msWord As Object, itm As range

Set ws = Activesheet
Set msWord = ActiveDocument.Content

With msWord ' cant figure out how to change this so it uses the currently open Word file.
    .Visible = True
    .Documents.Open "F:\Test folder\TestFolder\Test.docx"
    .Activate

    With .ActiveDocument.Content.Find
        .ClearFormatting
        .Replacement.ClearFormatting

        For Each itm In ws.UsedRange.Columns("A").Cells

            .Text = itm.Value2                          'Find all strings in col A

            .Replacement.Text = itm.Offset(, 1).Value2  'Replacements from col B

            .MatchCase = False
            .MatchWholeWord = False

            .Execute Replace:=2     'I guess this should be replaced with the code that places the text YYYYYY as a comment on the text XXXXXX?
        Next
    End With
    .Quit SaveChanges:=True
End With

関連情報