Hi Gurus,
I would like to ask if anyone know how to dynamically assign the output file name with current system datetime ?
I have attached the sample.
Thank you for your help
You might try to use one of the automatic macro variables that contain time information. Although I'm not sure if it breaks EG's dataset tracking (making creating process flows harder).
data x_%sysfunc(translate(%sysfunc(datetime(),datetime20.),_,:));
input col1 $ col2 $ col3 $;
x=catx(',',of col1-col3);
cards;
s y x
;
run;
Hi KSharp,
Thank you for your help, do you know how to do that in proc sql?
thanks
@SASNE wrote:
Hi KSharp,
Thank you for your help, do you know how to do that in proc sql?
thanks
proc sql;
create table x_%sysfunc(translate(%sysfunc(datetime(),datetime20.),_,:)) as
select ....
from ....
;
quit;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.