在这个问题中
Simple iteration through array with proc sql in SAS
%macro doit(list);
proc sql noprint;
%let n=%sysfunc(countw(&list));
%do i=1 %to &n;
%let val = %scan(&list,&i);
create table somlib._&val as
select * from somlib.somtable
where item=&val;
%end;
quit;
%mend;
%doit(100 101 102);
我想通过宏doit传递一个列表,我们可以从数据集中提取它。 例如:列表包含数据集'agegroups'中存在的变量'age'的不同值。
data agegroups;
input age;
datalines;
1
2
4
5
8
18
16
19
23;
我查看了%宏数组,但它没有帮助我(http://www2.sas.com/proceedings/sugi31/040-31.pdf)
任何帮助都将受到高度赞赏。谢谢!
答案 0 :(得分:1)
如评论中所述,BY组处理可能是更好的选择。
但是,您可以使用PROC SQL创建列表:
proc sql noprint;
select distinct age
into :ageList separated by ' '
from agegroups;
quit;
%put Age List: &ageList;
%doit(&ageList);