Hi All,
I need to crete a datset each month as per the following naming convention.
AB002_2017APR
for this wat is have used is AB002_&sysyear&sysmon
which resulets as AB002_201704, but what i need is AB002_2017APR.
Is there any format i couls use to get the desired result.
Please try to use the %substr function to pull the mon in letters
%let sysmon= %substr(&sysdate,3,3);
%let sysyear= %sysfunc(year("&sysdate"d));
%put &sysmon &sysyear;
Please try to use the %substr function to pull the mon in letters
%let sysmon= %substr(&sysdate,3,3);
%let sysyear= %sysfunc(year("&sysdate"d));
%put &sysmon &sysyear;
Or in one shot
%let rdate= %sysfunc(today(), yymon7.);
%put &rdate;
2017Apr
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 save with the early bird rate—just $795!
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.