[RESOLVED] Microsoft word copy and paste
Hello guys,
I am struggling with a copy and paste function between 2 documents
I want the function to search on the word "claims"
here is a part of the code,
ThisDocument.Activate 'Sets the main document active
Selection.MoveDown Unit:=wdLine, Count:=1
Windows("Wordfile_EP2488557.docx [kompatibilitetsläge]").Activate
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "claims"
.Font.Name = "Arial"
.Font.Size = "12"
.Font.Bold = True
I think this works fine.
the problem is now
I want the function will copy from the word claims to
the 2 linebreaks
how do I specify the range?
Please help a newb out
Thank you in advance
all VB Members