Hi,
Could you please let me know how I can conditionally rename a dataset?
eg: I have dataset TEST in a library.
So if the run month=01 then I need to rename TEST to TEST_01.
What rule are you using to determine that the "run month = 01"?
And since this is a date related question what do you want to do the following year when there is another "run month=01"?
Are also asking "how do I determine if the data set TEST exists in the library I expect it to?"
Hi,
I set the macro variable , for eg: mth according to the date when I run the program.
So I plan to run the process only on the month of January all other months are not affected.
Data set should be avaialbe in the library from the previous months run.
Thank you!
I'm not sure how much I undesstood your problem.
%let month= %sysfunc(month("&sysdate"d));
data TEST_&month;
set TEST;
run;
Hi,
The dataset I want to rename is in a permanent library and I want to rename that dataset only in January.
data test;
set sashelp.class;
run;
proc datasets library=work nodetails nolist;
change test=test_%sysfunc(month(%sysfunc(today())));
quit;
data test;
set sashelp.class;
run;
%let month=01;
proc datasets library=work nodetails nolist;
change test=test_&month;
quit;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.