BookmarkSubscribeRSS Feed
Amine_Khemiri
Obsidian | Level 7

Hello Community,

 

I would like to combine multiple pdf files into one single pdf using SAS studio. 

 

Thanks for your help.

 

Kind regards,

Amine

2 REPLIES 2
Quentin
Super User

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.

The Boston Area SAS Users Group is hosting free webinars!
Next up: SAS Trivia Quiz hosted by SAS on Wednesday May 21.
Register now at https://www.basug.org/events.
Jackson_Prok
Calcite | Level 5

@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.

sas-innovate-white.png

Our biggest data and AI event of the year.

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.

 

Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1412 views
  • 0 likes
  • 3 in conversation