Help: More Excel
How do I create a macro that will convert multiple excel documents into pdf files?
How do I create a macro that will convert multiple excel documents into pdf files?
| +286 | UBS Tech MD hires Son (from no-name college) as an Intern | 49 | 19h |
| +124 | Is banking in the south more sustainable? | 29 | 15h |
| +101 | The Intern Starter Pack | 17 | 7h |
| +76 | Current State of the League Tables | 28 | 1d |
| +75 | [Official] 2026 IB Analyst Bonus Megathread (with 2025 Consolidated Pay and Perks/Benefits) | 11 | 11h |
| +51 | Perella Weinberg to Cut 10% of Workforce, Including Partners | 33 | 7h |
| +40 | UBS Groups Ranked by Future Outlook | 20 | 2d |
| +34 | Are all Tech / TMT groups sweaty? | 19 | 1h |
| +32 | PWP Layoffs????? | 18 | 4d |
| +32 | UVA McIntire vs Cornell Dyson for IB | 19 | 10h |
Career Resources
Can't you just get an application that prints into a pdf file? If you mean group 4 files printed into pdf into 1 aggregate file, there is a program that does it too. Mine came with the firm computer, but I'm sure you can search online to get something like it.
Just record macro and print to PDF.
Then play around with the code so instead of ActiveWorkbook it prints each of the 4 workbooks you want.
But only Mac has a built-in print to pdf option right? I have a mac, but if I do that, will it work on non-mac computers?
I think its going to be different on every computer because the Adobe PDF print driver is named differently. Open an excel workbook, go to Tools->Macro->Record Macro then print to PDF. Then stop recording and post the code Excel created on this thread and Ill explain what to do.
Elan, thanks for your help!
Sub Printpdf() ' ' Printpdf Macro ' Macro recorded 5/30/2008 by ' ' Keyboard Shortcut: Option+Cmd+p ' ActiveWindow.SelectedSheets.PrintOut From:=1, To:=1, Copies:=1 ActiveWindow.SelectedSheets.PrintOut Copies:=1 End Sub
did you actually print it? You have to complete everything so it actually prints it to PDF.
yeah I did. I get the same code whether I print as pdf or just plain print.
Not gonna work then, its different on PC I guess. Only way around that is to set the default printer to Adobe through VBA code and then set it back to the original Default after its done printing... not sure how to do it, but I know its possible. for the printing part you just want to do something to the effect of:
Sub Print4Workbooks() Dim i As Integer, wbks(3) As String wbks(0) = "c:\wbk1.slx" wbks(1) = "c:\wbk2.slx" wbks(2) = "c:\wbk3.slx" wbks(3) = "c:\wbk4.slx" For i = 0 To 3 For j = 0 To Workbooks(wbks(i)).Sheets.Count - 1 Application.Workbooks(wbks(i)).Sheets(j).PrintOut Copies:=1 Next j Next i End Sub
You may just be able to do Workbooks(wbks(i)).PrintOut Copies:=1 Also Google Excel PrintOut VBA, you should be able to specify which printer you want it to print to(Adobe PDF driver in this case).
Maxime reiciendis occaecati rerum et. Ex at aperiam nemo exercitationem. Sed et et consequatur sit aut ratione nulla soluta. Facere nisi est voluptate aut. Doloremque unde mollitia dolor voluptas quaerat culpa ipsum.
See All Comments - 100% Free
WSO depends on everyone being able to pitch in when they know something. Unlock with your email and get bonus: 6 financial modeling lessons free ($199 value)
or Unlock with your social account...