由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS: automatically generate xls file with updated date
相关主题
How to work on this dataset?SAS proc printto 问题。
如何用代码将多个sas数据集输出成csv文件请教:多个csv文件(>100)怎么用"proc sql" merge成一个文件?
可以用sas直接改excel的worksheet的名字么?how to automatted run a SAS program on every monday?
怎样批量将很多的sas文件转换成stata文件?sas email
proc export to Excel: can not read it!请教SAS问题:这个code有什么办法简化吗?
Is the following SAS code wrong?SAS问题请教
[求助]用SAS建立多个工作簿的Excel文件SAS不能导入EXCEL2003的数据!
SAS 求助: filenamesNeed urgent helps: How to use DDE to import password-protected excel file into SAS?
相关话题的讨论汇总
话题: xls话题: file话题: sas话题: data
进入Statistics版参与讨论
1 (共1页)
t**********h
发帖数: 100
1
How to create macro variable in xls file? I mean it automatically update xls
file to today’s date or this current such as:
proc export data = files
outfile = "c\filename&week.xls" dbms = xls replace ;
run;
thanks.
c****g
发帖数: 156
2
DATA _NULL_;
call symput ('today', compbl(put(today(), date9.)));
run;
proc export data = files
outfile = "c:\filename&today." dbms = xls replace ;
run;
t**********h
发帖数: 100
3
thank you very much!
P****D
发帖数: 11146
4
proc export data = files
outfile = "c:\filename&sysdate9." dbms = xls replace ;
run;
Don't need any DATA step before it.
1 (共1页)
进入Statistics版参与讨论
相关主题
Need urgent helps: How to use DDE to import password-protected excel file into SAS?proc export to Excel: can not read it!
求助:SAS data set输出Is the following SAS code wrong?
SAS log window full,跪求解决方法[求助]用SAS建立多个工作簿的Excel文件
请教SAS输入法的问题SAS 求助: filenames
How to work on this dataset?SAS proc printto 问题。
如何用代码将多个sas数据集输出成csv文件请教:多个csv文件(>100)怎么用"proc sql" merge成一个文件?
可以用sas直接改excel的worksheet的名字么?how to automatted run a SAS program on every monday?
怎样批量将很多的sas文件转换成stata文件?sas email
相关话题的讨论汇总
话题: xls话题: file话题: sas话题: data