Reputation: 1762
I need to export a word document, together with some worksheets, via VBA to one PDF file.
I know I can export several worksheets to PDF (each worksheet is a page), but is it possible to include a .doc along with the worksheets?
Upvotes: 0
Views: 154
Reputation: 2706
I would suggest you build a temporary word document programmatically. The macro would be
Digging out "how-to" for each of the operations should be simple. Post your code when you have it, and we'll help debugging !
NB : Alternatively there are tools to merge pdf files (Search on StackOverflow). You could generate separate pdfs and then merge them. vbscript would be a suitable tool to program that !
Upvotes: 1