%let cls = %upcase(&class);
proc sql;
create view new as select * from sashelp.vmacro
%if "&cls" eq "_AUTOMATIC_" %THEN
where scope='AUTOMATIC';
%else %if "&cls" eq "_GLOBAL_" %then
where scope='GLOBAL';
%else %if "&cls" eq "_LOCAL_" %then
where scope^='AUTOMATIC' and scope^='GLOBAL' and scope^='PUTSORTED';
%else %if "&cls" eq "_USER_" %then
where scope^='AUTOMATIC' and scope^='PUTSORTED';
%else %if "&cls" eq "_ALL_" %then
where scope^='PUTSORTED';
%else %do;
%put Unrecognized CLASS of macro variables: &cls;
%return;
%end;
order by name;
quit;
data _null_;
set new;
put scope +1 name +1 value;
run;
%mend;
%putsorted(_global_)
其实这个里面值得学习的一点就是在宏里面用SQL根据IF THEN ELSE判断不同的筛选条件来获得不同作用范围的宏变量按照字母顺序输出