ODS destination FILE=’파일명’; 결과를 생성하는 프로시져(들) ODS destination CLOSE; |
◀예제▶ Excel 에서 오픈 가능한 파일들 생성.
ODS csvall FILE = ‘학생정보.csv’;
ODS msoffice2k FILE = ‘학생정보.html’;
ODS tagsets.excelxp FILE = ‘학생정보.xml’;
PROC PRINT DATA=sashelp.class;
RUN;
ODS _ALL_ CLOSE; /* 열린 모든 destination 닫기 */
ODS LISTING; /* 출력창 활성화 */
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.