Hello Community,
I would like to combine multiple pdf files into one single pdf using SAS studio.
Thanks for your help.
Kind regards,
Amine
Hi, this isn't really a SAS thing, unfortunately. If you have other tools/languages that can combine PDFs, you can use SAS to drive/automate the process. If you google a bit, you'll find approaches like:
https://communities.sas.com/t5/SAS-Programming/Combine-PDF-files-using-SAS/td-p/488455
https://www.lexjansen.com/pharmasug-cn/2016/PG/PharmaSUG-China-2016-PG21.pdf
https://gist.github.com/statgeek/264fe76bdccb6b137215
SAS gives you a lot of control when creating PDFs. But doesn't really have features for managing/updating PDFs after they have been created.
@Amine_Khemiri wrote:Hello Community,
I would like to combine multiple pdf files into one single pdf using SAS studio.
Thanks for your help.
Kind regards,
Amine
Amine, you can merge PDF files using SAS Studio by leveraging the `FILENAME` statement and the `DATA` step along with `ods pdf`. Here's a simple example:
FILENAME outpdf 'combined.pdf'; DATA _NULL_; FILE outpdf; ods pdf (id=merge) file=outpdf; /* insert code to generate or import PDF files here */ ods pdf close; RUN;
Remember to replace the placeholder comment with the code and an whatsapp +2 that imports or generates the PDF files you want to combine.
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.