Automating Abobe Pro with Excel. Pie In The Sky?

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,564
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I have written (taken me years) an Excel based VBA "application" that allows a user to access and combine data from external databases, provides an interface for the user to edit, modify and enhance that data, and initiate Word mail merges using that data. Fundamentally it works ok. The mail merge creates individual documents wqhich are printed and distributed to groups of users for reference and action based on the data presented to them. The documents are returned, reviewed, with the initial database accessed and contents edited based on returned information on the documents.

It an effort to reduce the masses of paper wasted with this process (daily there can be dozens of pages printed), it has been decided to go electronic using Adobe fillable form technology on an iPad. Adobe Acrobat Pro, from what I have seen from playing around (I have to self teach myself) allows me to use the existing Word mail merge document as a basis of my Adobe form. I can adapt the Word document's end user (paper receiving) documentable fields to be fillable from with Adobe Reader on the tablet. Once the Adobe form is created, I can do a "mail merge" of sorts from within Adobe.

My question is this ... I can still utilize my Excel VBA based application to extract and modify data for merging into a document, but is it possible to automate the Adobe merge and document creation from Excel, much like I do with Word Mailmerge. ie. a button push will launch Adobe Pro and initiate it's mail merge feature to create the fillable form for distribution? Perhaps this is a big stretch of power, but what was once an efficient application but wasteful, is being replaced by inefficiency in processing with no waste.

Any thoughts on approach, online research resources (appropriate Google search terms perhaps), critical or optimistic feedback would be greatly appreciated.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I'm not sure what sort of mail merge Acrobat Pro provides, but this VBA code shows how to write a value to a PDF form field.
VBA Code:
Public Sub Write_PDF_Form_Field()

    Dim PDdocForm As Object
    Dim JSO As Object
    Dim PDFformFile As String
    Dim field As Object
    
    PDFformFile = "C:\folder\path\PDF form.pdf"
        
    Set PDdocForm = CreateObject("AcroExch.PDDoc")
    PDdocForm.Open PDFformFile
    
    Set JSO = PDdocForm.GetJSObject
    Set field = JSO.getField("FieldName")
    field.Value = "Field Value"
    
    PDdocForm.Save 1, Replace(PDFformFile, ".pdf", "2.pdf")   'Save with new file name
    PDdocForm.Close
      
End Sub
You could expand this code to loop through the rows in a sheet and write cell values to multiple fields in a PDF form.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,383
Members
448,955
Latest member
BatCoder

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