Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 07-10-2021, 08:30 PM
gmayor's Avatar
gmayor gmayor is offline Combining Selection of Documents Windows 10 Combining Selection of Documents Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Use the filepicker instead (below) - or see Insert a selection of documents


Code:
Sub MergeDocs()
Dim rng As Range
Dim MainDoc As Document
Dim strFile As String
Dim Count As Long
    With Application.FileDialog(msoFileDialogFilePicker)
        .Title = "Pick files"
        .AllowMultiSelect = True
        If .Show <> -1 Then Exit Sub
        Set MainDoc = Documents.Add
        For Count = 1 To .SelectedItems.Count
            strFile = .SelectedItems(Count)
            Set rng = MainDoc.Range
            With rng
                .Collapse wdCollapseEnd
                If Count > 1 Then
                    .InsertBreak wdSectionBreakNextPage
                    .End = MainDoc.Range.End
                    .Collapse wdCollapseEnd
                End If
                .InsertFile strFile
            End With
        Next Count
    End With
    MsgBox ("Files are merged")
lbl_Exit:
    Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Combining Selection of Documents combining word documents jesselscott Word 1 04-28-2015 09:55 AM
Combining Word Documents with Comments kimmers41 Word 0 05-06-2014 12:56 PM
Combining/merging documents hawkeyefxr Word 11 08-03-2012 03:01 AM
Combining Selection of Documents Combining documents of different formats Blaie Word 1 06-04-2011 06:35 PM
Combining Selection of Documents Combining Word Documents dms997 Word 5 02-26-2011 03:25 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 12:21 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft