Can someone tell me how do I get the output as '26MAR2017-0001' upto with an increment upto 1000?
I was able to figure out how to get the output as '26MAR17-0001'
Thank You.
DATA want;
DO _n_=1 TO 1000;
x = "&SYSDATE"||'-'||PUT(_n_, z4.);
OUTPUT;
END;
RUN;
&SYSDATE uses a two-digit year (as you have seen). To get a four-digit year, switch to &SYSDATE9 instead.
Your code looks fine, try using a variable other than _n_, which is an automatic variable and trying to loop with it may confuse things.
I would probably also use CATX.
&SYSDATE uses a two-digit year (as you have seen). To get a four-digit year, switch to &SYSDATE9 instead.
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.