[예제프로그램]
/*SAS Output을 pdf로 내보내기*/
ods listing close;
ods pdf file='c:\temp\class.pdf';
ods pdf close;
ods listing;
/*SAS Output을 rtf로 내보내기*/
ods listing close;
ods rtf file='c:\temp\class.rtf';
ods rtf close;
ods listing;
/*SAS Output을 excel로 내보내기*/
ods listing close;
ods chtml file='c:\temp\test11.xls';
ods chtml close;
ods listing;
/*SAS Output을 ppt로 내보내기*/
ods listing close;
ods powerpoint file="c:\temp\test.pptx"
해당 내용은 SAS 도움말에서 ods pdf, ods rtf, ods chtml, ods powerpoint로 검색하셔도 확인 가능합 니다.
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!