How to Save PowerPoint Presentation as PDF using VBA
How to Convert PowerPoint Presentation PPT to PDF using VBA
PDF is always the universal format for sending the files. With lot of versions of MS Office and other Office suites around .. it is better to circulate the Deck as a PDF
The following snippet converts the Presentation to a PDF and saves in the same folder of the PPT
ActivePresentation.ExportAsFixedFormat ActivePresentation.Path & "\" & ActivePresentation.Name & ".pdf", ppFixedFormatTypePDF, ppFixedFormatIntentPrint
How to Create PDF from Word Document using VBA
How to Convert Word Table to PDF using VBA
- Login or register to post comments
- Feed: vbadb feed
- Original article
