BookmarkSubscribeRSS Feed

[SAS 활용 FAQ] SAS의 OUTPUT을 PDF, RTF, EXCEL, PPT 등으로 저장하는 방법을 알고 싶습니다.

Started ‎05-18-2021 by
Modified ‎05-30-2021 by
Views 3,087

[예제프로그램]

/*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로 검색하셔도 확인 가능합 니다.

Version history
Last update:
‎05-30-2021 10:02 PM
Updated by:
Contributors

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Article Labels
Article Tags