%macro m(start=,end=);
proc expand data=A1 (keep=ID date AAA) out=A3 method=none;
%do i=&start %to &end;
by permno;
id date;
convert AAA = AAA_&i / transformout=(reverse MOVPROD &i reverse trimright &j);
%end;
run;
%mend m;
%m(start=2,end=50);
--------------------------------------------------
Here how to code j ? j=i-1
It is incorrect if I just use "&i-1" in the transformout. Thanks!
For integer calculations in macro code you need the %eval() macro function.
But do you really want to repeat the statements
by permno;
id date;
convert AAA = AAA_&i / transformout=(reverse MOVPROD &i reverse trimright &j);
49 times in one proc expand?
I guess you'd rather want to have this:
%macro m(start=,end=);
proc expand
data=A1 (keep=ID date AAA)
out=A3
method=none
;
by permno;
id date;
%do i=&start %to &end;
convert AAA = AAA_&i / transformout=(reverse MOVPROD &i reverse trimright %eval(&i-1));
%end;
run;
%mend m;
%m(start=2,end=50);
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.