christer99
IS-IT--Management
- Dec 3, 2001
- 247
I need to insert pages 3-5 from another Word document into the active Word document? I have tried use streamread but it seems to be working only with the files and not (large) Word documents.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim r As Range
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="3"
ActiveDocument.Bookmarks.Add Name:="temp1", Range:=Selection.Range
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="6"
Set r = ActiveDocument.Range(Start:=ActiveDocument.Bookmarks("temp1").Range.Start, _
End:=ActiveDocument.Bookmarks("\page").Range.End)