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.

BASUG is hosting free webinars Next up: Don Henderson presenting on using hash functions (not hash tables!) to segment data on June 12. Register now at the Boston Area SAS Users Group event page: 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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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