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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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