Are there any quick methods available to convert multiple SAS program files into PDF documents?
Adobe Professional. Or if you have Word 2010 open them using Word and save as PDF, you could easily write a VBA macro to do that.
You could also probably write a macro to read in the program and then PDF it as well I'm guessing.
Adobe Professional. Or if you have Word 2010 open them using Word and save as PDF, you could easily write a VBA macro to do that.
You could also probably write a macro to read in the program and then PDF it as well I'm guessing.
ODS can come to your rescue: (works under 9.2)
filename sas "h:\sas.sas";
ods listing close;
ODS pdf file="H:\sas.pdf";
data _null_;
infile sas ;
input;
temp=_infile_;
file print ods;
put _ods_;
run;
ODS pdf CLOSE;
ods listing;
And if you have multiple .sas under the same folder, you can use pipe, filevar= etc to do conversion.
Haikuo
Code for multiple .sas file pdf conversion, you may need to tweak some parameters to suit your environment.
filename codes pipe "dir /b /s h:\temp\sascode\*.sas";
ods listing close;
ODS pdf file="H:\sas.pdf";
data _null_;
infile codes truncover;
input fname $40.;
infile dummy filevar=fname end=done;
do while(not done);
input ;
temp=_infile_;
file print ods;
put _ods_;
end;
run;
ODS pdf CLOSE;
ods listing;
Haikuo
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.