Hi.. I'm relatively new and I'm Trying to extract 60 months data from source tables which names as DATA_YYYYMM and created separate data tables.
I wrote the below macro for this.
%MACRO DO_YRMN;
%do YY = 2015 %to 2020;
%do MM = 01 %to 12;
DATA My_DATA_TABLE&YY.&MM
/**** my VAR*****/
SET SOURCE_TABLE&YY.&MM;
RUN;
%END;
%END;
%MEND DO_YRMN;
%DO_YRMN;Macro runs fine. But the issue is zero is not used. So SAS created code as YYYYM only (20191) instead of YYYYMM(201901)
how about this code.
%do MM = 01 %to 12;
%if &MM<10 %then %let MM=0&MM.; /* Add this line */
how about this code.
%do MM = 01 %to 12;
%if &MM<10 %then %let MM=0&MM.; /* Add this line */
Or do this:
%do mm = 1 %to 12;
%let mm = %sysfunc(putn(&mm.,z2.));
Since you appear to be looping over months it is probably better to use actual dates instead.
%MACRO DO_YRMN;
%local start end offset yymm ;
%let start='01JAN2015'd ;
%let end='01DEC2020'd;
%do offset=0 %to %sysfunc(intck(month,&start,&end));
%let yymm = %sysfunc(intnx(month,&start,&offset),yymmn6.);
DATA My_DATA_TABLE&YYMM
/**** my VAR*****/
SET SOURCE_TABLE&YYMM;
RUN;
%end;
%MEND DO_YRMN;
%DO_YRMN;
Now you can use intervals that are not complete years.
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.