比如说下面的例子, %macro aaa (in,out);
data &out;
set ∈
if substr(date,1,2) in( '10','11','12') then do;
month= substr(date,1,2) ;
if substr(date,5,1)='/' then year=substr(date,6,4);
else year=substr(date,7,4);
output;
end;
run; %mend aaa;
SAS就一直在那读。。。因为没读完,也没有LOG可以看。
请教各位,这是为什么啊?