DATA _NULL_;
CALL SYMPUT('date1',&prev_me);
RUN;
CALL SYMPUT('date1',&prev_me);
SYMBOLGEN: Macro variable PREV_ME resolves to 201405
The &prev_me is part of an internal calendar that automactically formats the year previous month, in this case May.
Now I need to format this date in this format month year (may14) or the text version of the month then the year.
This will allow me to use this to capture datasets based on their month and year (ie. link_may14_he
How can I adjust the data null to achieve this result.
call symput('date1', put(&prev_me, monyy5.));
Looks like you want to convert YYYYMM to MONYY.
%let prev_me = 201405 ;
%let date1 = %lowcase(%sysfunc(inputn(&prev_me.01,yymmdd8.),monyy5.)) ;
%put &=prev_me &=date1 ;
PREV_ME=201405 DATE1=may14
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.