I wish to use select into: to create a global variable in a macro module.
%macro example();
proc sql noprint;
select x into:DDD from aaa;
quit;
%mend;
The problem is I wish to create a global variable DDD, in this example we can only get the local variable DDD. Thanks. Wayne.