SAS global forum 的Proceedings online
2011 的 http://support.sas.com/resources/papers/proceedings11/TOC.html
Singh, Subhashree; Singh, Sovraj | ||
| ||
| ||
Shipp, Charles E.; Lafler, Kirk P. | ||
| ||
| ||
Top ten里排第二的http://lexjansen.com/也不错,集合了很多资源,很容易找到东西。
生成EXCEL report的不同方式比较
Miralles, Romain | ||
| Creating a Microsoft Excel Report: A Comparison of the Different Techniques | |
PROC EXPORT
- PROC EXPORT DATA = sasglf
- DBMS=excel
- OUTFILE = "c:\sas_globalforum.xls"
- REPLACE;
- sheet='page1';
- RUN;
LIBNAME ENGINE
A. LIBNAME engine without a template
- LIBNAME toexcel EXCEL 'c:\sugi_libname.xls' VER=2002 ;
- DATA toexcel.sugi(DBLABEL=YES);
- SET sugi.sugi ;
- RUN;
- LIBNAME toexcel CLEAR;
B. LIBNAME engine with a template
- PROC DATASETS LIB=toexcel;
- DELETE sugi; /* Sugi is the named range defined in excel*/
- RUN;
- QUIT;
- PROC DATASETS LIB=toexcel;
- DELETE param; /* 2nd named range defined in excel*/
- RUN;
- QUIT;
- DATA toexcel.sugi; /* 2nd output the data in the ‘sugi’ range defined in Excel*/
- SET sugi ;
- RUN;
- DATA toexcel.param ;
- SET param ;
- RUN;
- LIBNAME toexcel CLEAR; /* Disconnect from workbook*/
EXCELXP TAGSET
略
ODS CSV
- ODS CSV FILE='C:\sasglobal.csv';
- PROC PRINT DATA=sasglobalforum;
- RUN;
ODS HTML
- ODS HTML BODY = 'C:\sugi.xls';
- PROC FREQ DATA=sugi;
- TABLES var1 var2;
- RUN;
- ODS HTML CLOSE;
ODS MSOFFICE2K
略
DDE
略
INTEGRATED OBJECT MODEL(IOM)
略


雷达卡



京公网安备 11010802022788号







