BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Karlb
Calcite | Level 5

Hi


I generate a series of PDFs by defining a macro containing some procedures and the PDF definition. Within the macro data to be reported are subsetted for each by-value. Finally the macro is executed with call execute for each by-value.
 

Program is like this...

 

%macro writepdf (byvalue);

ODS PDF body="&byvalue..PDF"; * one PDF for each by-value;

proc print data=LISTDATA; where Var1="&byvalue"; run;

ODS PDF close;

%mend;

 

Data _null_; set BYVALUES;

Call execute('%writepdf(' !! byvalue !! ')');

run;

 

Is there any faster -more direct- way to produce the PDFs per by group (without multiple reading the LISTDATA-dataset)?

 

Thanks for all answers,

Karl

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
Diamond | Level 26

Hi, well before I go down the macro road, I usually try ODS PDF with the NEWFILE= option. I usually only use Macro processing if I need to control the names of the output PDF files.

 

cynthia

newfile_pdf.png

View solution in original post

2 REPLIES 2
Cynthia_sas
Diamond | Level 26

Hi, well before I go down the macro road, I usually try ODS PDF with the NEWFILE= option. I usually only use Macro processing if I need to control the names of the output PDF files.

 

cynthia

newfile_pdf.png

Karlb
Calcite | Level 5
Thank you very much Cynthia...the option is exactly what I was looking for. Sincerly Karl

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1832 views
  • 1 like
  • 2 in conversation