Hello! I have created multiple custom reports using SAS EG. Is there a way to combine them into one PDF output? I realize I could just add all to one custom report but I need some to be landscape and some to be portrait and it seems that would get cumbersome. I'd also like to consecutively number the pages if possible or just remove the page numbers if that is not possible. Thank you for any recommendations you can provide!
Look into ods layout gridded (for multiple pages) or absolute (one page).
https://support.sas.com/rnd/base/ods/Tipsheet_ods_layout.pdf
Or else the Report Writing Interface (RWI) but this has a steep learning curve
ods listing close;
ods pdf file="<pdf file name>";
option orientation=landscape;
proc print data=sashelp.cars;
run;
option orientation=portrait;
proc print data=sashelp.cars;
run;
ods pdf close;
ods listing;
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.