gpt4 book ai didi

sas - 将日期合并到文件名中

转载 作者:行者123 更新时间:2023-12-04 18:24:15 27 4
gpt4 key购买 nike

我有一份报告需要发送到其他共享驱动器,需要发送标题和日期。我该怎么做呢

     PROC EXPORT DATA= WORK.ARG_REPORT
OUTFILE= "/dwdata/sas_data/REPORT.csv" REPLACE;

RUN;

我可以在 REPORT 中添加什么以查看日期?谢谢

最佳答案

您需要创建一个带有日期的宏变量,尤其是当日期会根据您运行代码的时间而改变时。然后在导出语句中引用该变量。下面的代码获取今天的日期。

%let numdate = %sysfunc(today(), yymmddn8.);

PROC EXPORT DATA= WORK.ARG_REPORT
OUTFILE= "/dwdata/sas_data/REPORT_&numdate..csv"
DBMS=CSV REPLACE;
RUN;

关于sas - 将日期合并到文件名中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23408805/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com