BookmarkSubscribeRSS Feed
waldo11
Fluorite | Level 6

Hi I'm having trouble getting the answer to a very trivial problem.

 

I'm trying to get my previous date (year and month) to account for the flip of the year scenario.

 

Example:

yyyymm = 201805

pyyyymm = 201804

 

yyyymm = 201801

pyyyymm = 201712

 

But the following program just spews out 201800 for when yyyymm = 201801...and i cant figure out why?

Thanks.

 

%let yyyymm = 201801;

 

%let yr = %sysfunc(substr(&yyyymm,1,4));
%let mth = %sysfunc(substr(&yyyymm,5,2));

 

data null_;
if "&mth" = '01' then do;
%let pyyyymm = cats(&yr.-1, 12);
end;
else do;
%let pyyyymm = &yyyymm.-1;
end;
run;

5 REPLIES 5
novinosrin
Tourmaline | Level 20

Are you looking to do something like this?

%macro waldo11;
 

%let yyyymm = 201801;

 

%let yr = %sysfunc(substr(&yyyymm,1,4));
%let mth = %sysfunc(substr(&yyyymm,5,2));

 

%if &mth = 01 %then %do;
%let pyyyymm = %sysfunc(cats(&yr.-1, 12));
%end;
%else %do;
%let pyyyymm = %val(&yyyymm.-1);
%end;

%put pyyyymm=&pyyyymm;
%mend waldo11;

%waldo11

/*or*/


%let yyyymm = 201801;



%let yr = %sysfunc(substr(&yyyymm,1,4));
%let mth = %sysfunc(substr(&yyyymm,5,2));
data _null_;
if "&mth" = '01' then do;
call symput( 'pyyyymm',cats(&yr.-1, 12));
end;
else do;
call symput('pyyyymm',&yyyymm.-1);
end;
run;

%put &=pyyyymm;
Tom
Super User Tom
Super User

Macro code is used to generate SAS code. By the time the SAS code starts running the macro code has been run already.

So you are running these commands.

%let yyyymm = 201801;
%let yr = %sysfunc(substr(&yyyymm,1,4));
%let mth = %sysfunc(substr(&yyyymm,5,2));
%let pyyyymm = cats(&yr.-1, 12);
%let pyyyymm = &yyyymm.-1;

data null_;
  if "&mth" = '01' then do; end;
  else do; end;
run;

If you want to use your data step to generate macro variables then use the CALL SYMPUTX() function.

data null_;
  if "&mth" = '01' then call symputx('pyyyymm',cats(&yr.-1, 12));
  else call symputx('pyyyymm',&yyyymm.-1);
run;

Of course if you are just trying to subtract one month from a date then convert your strings into dates and use functions.

%let pyyyymm=%sysfunc(intnx(month,%sysfunc(inputn(&yyyymm.01,yymmdd8)),-1),yymmn6);
PaigeMiller
Diamond | Level 26

Definitely, as @Tom said, you should be using SAS dates to do the calculations and the INTNX function to do this. 

 

Don't try to do math on human readable dates.

 

 If you need to convert the results to a human readable format (which SAS dates are not), then when you do the output, apply the proper format.

--
Paige Miller
Cynthia_sas
SAS Super FREQ
Hi:
You are mixing DATA step logic with creating a Macro variable. If you want to create a macro variable conditionally, then your choices are
1) to write a macro program definition and use macro logic with %IF or
2) to write a DATA step program and use CALL SYMPUT or CALL SYMPUTX.

When you use a standard DATA step program the %LET is resolved at compile time, not at execution time, so the results will not really execute conditionally, as you envision because the %let statements are not really part of the program anymore, after compile time.

Cynthia
waldo11
Fluorite | Level 6
A lot more clear now - thanks everyone!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 5 replies
  • 3249 views
  • 6 likes
  • 5 in conversation