Excel Macro with eDocPrinter PDF Pro

djt76010

Board Regular
Joined
Feb 23, 2007
Messages
109
I am trying to get eDocPrinter PDF Pro to create a pdf file from 2 tabs in an Excel spreadsheet. I was hoping to just take Record a Macro code and use it, but currently when I run the code below it leaves me at the 'Save As' dialog box with the name of the Excel file as the pdf name and I have to click Save. The problem with this is that I would like to run through a list of data in another tab and create 40+ pdf files with unique names all at once. Is there a way to modify the filename and complete the Save action using VBA code?

Code:
Sub TestPDF()
'
' TestPDF Macro
'

    Sheets(Array("Summary", "Summary 2")).Select
    Sheets("Summary").Activate
    ExecuteExcel4Macro _
        "PRINT(1,,,1,,,,,,,,2,""eDocPrinter PDF Pro on Ne02:"",,TRUE,,FALSE)"
End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,215,067
Messages
6,122,949
Members
449,095
Latest member
nmaske

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