i Have generated a report using proc compare in SAS and now i want to save that report in PDF format as an external file.
Can i do this using ODS in sas and if yes can anyone explain how?
Below is the PROC compare program:
proc compare base=test3 compare=test2 /*printall*/ /*nosummary*/;title 'Comparing PROD and ADHOC for Conversion Policies';run;
Thanks,
Just use ODS PDF
Do i have the option to select the location where i want to save the PDF?
If yes, please tell how.
Read the documentation that I linked to. (Almost) everything you need to know is in there. Look for the file= option.
Thanks a lot @Kurt_Bremser
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.