Combine multiple PDF files with VBA

EvdM

New Member
Joined
Dec 2, 2020
Messages
24
Office Version
  1. 365
Platform
  1. Windows
Dear VBA Specialists,

I want to create a macro which merges multiple PDF files, but the amount of files that has to be merged is variable and need to be determined in the excelsheet. So my wish is to gain a VBA code that reads the filenames out of a folder, Somehow select which ones should merged into the same file and let Adobe Acrobat Pro do the rest.

I have achieved to get a code running that reads out a folder and projets the filename and path in the sheet (column A and B). Now should be selected which files belong in the same combined PDF. My best guess is to write down the name of the future merged filename in column C...? And adjust the code to that system. (Example Below)


Filepath 1File 1Mergedfile 1
Filepath 2File 2Mergedfile 1
Filepath 3File 3Mergedfile 1
Filepath 4File 4Mergedfile 2
Filepath 5File 5Mergedfile 2

Online are some examples of VBA code that could merge PDF files but not exactly working like how I imagine.
This raises the question if it makes sense to let it work how I described over here?

If you can have any advice or can help me out with making this work, that would be very much appreciated!

Kind regards,

Edwin
 
Actually we have PDF X-change Editor as well as PDF X-Change pro in the office
PDF X-Change Pro is not the same as Acrobat Pro. Please start a new thread because the code in this thread is for Adobe Acrobat Pro and would be completely different for the other API, which I've never used.
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi John,

I installed Acrobat pro , now its stuck at a point it stuck at Right Function

Thanks


1658143695356.png

'If Right(PDFfiles(i, 1), 1) <> "\" Then PDFfiles(i, 1) = PDFfiles(i, 1) & "\"


 

Attachments

  • 123.png
    123.png
    26 KB · Views: 40
Upvote 0
Hi Paul,

Issue has resolved

Need to delete reference which sarted with missing...

Thanks
 
Upvote 0
As described by your OP, my code expects the following:

Column A - path
Column B - PDF file name (including .pdf extension)
Column C - PDF merged file name (including .pdf extension)

with data starting in row 2 of the active sheet.



Yes, and:
VBA Code:
    With ActiveSheet
        PDFfiles = .Range("A2", .Cells(.Rows.Count, "G").End(xlUp)).Value
    End With
and append the ".pdf" extension to every PDFfiles(i,4) and PDFfiles(i,7) reference, for example:
VBA Code:
        If Dir(PDFfiles(i, 3) & PDFfiles(i, 4) & ".pdf") = vbNullString Then
Hi John,

I have a similar situation that I was hoping you could help me with.
The difference is, I have one set of PDFs in one folder and the other set of PDFs in a separate folder that I want to combine. Folder A has a list of PDFs and only one of them will be combined with something in Folder B. But the number of PDFs in Folder B will vary - could be 1, could be 20.

So I was thinking, in excel I would have the list of Folder A pdfs in Column A, the list of Folder B pdfs in Column B, and then the file path with the new name in Column C (in a completely different folder).
Is that possible?

Thank you so much for your time and help in advance!
 
Upvote 0
list of Folder A pdfs in Column A, the list of Folder B pdfs in Column B, and then the file path with the new name in Column C (in a completely different folder).
Try this macro.
VBA Code:
Public Sub Merge_PDFs()

    Dim PDFfiles As Variant
    Dim i As Long, s As String
    Dim PDDocA As Object 'Acrobat.AcroPDDoc
    Dim PDDocB As Object 'Acrobat.AcroPDDoc
       
    With ActiveSheet
        PDFfiles = .Range("A2", .Cells(.Rows.Count, "C").End(xlUp)).Value
    End With
   
    'Create Acrobat API objects
   
    Set PDDocA = CreateObject("AcroExch.PDDoc")
    Set PDDocB = CreateObject("AcroExch.PDDoc")
   
    'Loop through rows, open PDF files in column A & B, merge B to A and save as PDF file in column C
   
    For i = 1 To UBound(PDFfiles)
        If Dir(PDFfiles(i, 1)) <> vbNullString And Dir(PDFfiles(i, 2)) <> vbNullString Then
            PDDocA.Open PDFfiles(i, 1)
            PDDocB.Open PDFfiles(i, 2)
            If Not PDDocA.InsertPages(PDDocA.GetNumPages - 1, PDDocB, 0, PDDocB.GetNumPages, 0) Then
                MsgBox "Error merging" & vbCrLf & PDFfiles(i, 1) & vbCrLf & PDFfiles(i, 2) & vbCrLf & "to" & vbCrLf & PDFfiles(i, 3), vbExclamation
            End If
            PDDocB.Close
            PDDocA.Save 1, PDFfiles(i, 3)
            PDDocA.Close
        Else
            s = ""
            If Dir(PDFfiles(i, 1)) = vbNullString Then s = PDFfiles(i, 1) & vbCrLf
            If Dir(PDFfiles(i, 2)) = vbNullString Then s = s & PDFfiles(i, 1) & vbCrLf
            MsgBox "File(s) not found" & vbCrLf & s, vbExclamation
        End If
    Next
   
    Set PDDocA = Nothing
    Set PDDocB = Nothing

    MsgBox "Done"
   
End Sub
Please start a new thread if this doesn't work or you need more help.
 
Upvote 0
Thanks, John_w !
We are definitely getting somewhere :) But I have an additional question.
I posted a new thread, if you could please help me.

Thank you in advance!

 
Upvote 0
HI i got this VBA to work for me thanks for this , i would like to know if there is way for each pdf that is merged to be bookmarked within the pdf - any help would be appreciated Thanks
 
Upvote 0
See if you can incorporate the code for adding bookmarks in this macro:


Search for 'bookmark' in the code and you'll see that it gets the BookmarkRoot and creates each bookmark by calling BookmarkRoot.CreateChild with a bookmark name, page index and bookmark index.

I'll reply in your new thread if you need more help.
 
Upvote 0
See if you can incorporate the code for adding bookmarks in this macro:


Search for 'bookmark' in the code and you'll see that it gets the BookmarkRoot and creates each bookmark by calling BookmarkRoot.CreateChild with a bookmark name, page index and bookmark index.
would i be able to incorporate the bookmark part into the code to merge the pdfs?
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,267
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top