BookmarkSubscribeRSS Feed
Q1983
Lapis Lazuli | Level 10

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.

2 REPLIES 2
Reeza
Super User

call symput('date1', put(&prev_me, monyy5.));

Tom
Super User Tom
Super User

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

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1498 views
  • 0 likes
  • 3 in conversation