Consulting

Results 1 to 1 of 1

Thread: Copy text between documents

  1. #1
    VBAX Contributor
    Joined
    Jun 2014
    Posts
    114
    Location

    Copy text between documents

    Hello guys,

    I am trying to figure out how to copy the text that my macroscript marks green:
    into a another open active document,
    between 2 linebreaks,

    Can someone help me out?

    See code snipet below,




    Sub Test()
    Dim oRng As Word.Range
    Set oRng = ActiveDocument.Range
    With oRng.Find
    .Text = "Claims"
    While .Execute
    oRng.MoveEndUntil Chr(11)
    oRng.MoveEnd wdCharacter, 1
    oRng.MoveEndUntil Chr(11)
    oRng.HighlightColorIndex = wdBrightGreen
    oRng.Collapse wdCollapseEnd
    Wend
    End With
    End Sub


    Thank you in advance

    Cheers

    Elmnas
    Last edited by elmnas; 07-03-2014 at 12:56 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •