Forum Discussion

Sumaturk's avatar
Sumaturk
Copper Contributor
Jun 09, 2022
Solved

How to copy & paste multiple comments' balloons from one word doc to another on MacBook air?

Hello everyone,    I am trying to highlight several comment balloons to copy-paste from doc file to another. I tried ctrl + C and did not work. I tried highlighting one balloon and holding down the...
  • Stefan_Blom's avatar
    Stefan_Blom
    Jun 14, 2022

    Sumaturk 

     

    As far as I know, this would require a macro, both on a Mac and a PC. 

     

    The following simple VBA code would insert comment text and the commented text in a new document:

     

    Sub InsertCommentTextInNewDoc()
    'Macro created by Stefan Blom, MVP, June 2022
    Dim c As Comment
    Dim doc As Document
    Dim currdoc As Document
    Set currdoc = ActiveDocument
    Set doc = Documents.Add
    
    For Each c In currdoc.Comments
    doc.Content.InsertParagraphAfter
    doc.Content.InsertAfter "Commented text: " & c.Scope.Text
    doc.Content.InsertParagraphAfter
    doc.Content.InsertAfter "Comment: " & c.Range.FormattedText
    Next c
    End Sub

     

Resources