|
You were almost there. Logal and Global do not actually create the
macro variable. you will see it once you have a assigned it a value:
%macro t1;
a
%mend;
%macro t2;
%local %t1;
%let %t1=xxx; *<-----;
%put _local_;
%mend;
options mprint mlogic symbolgen;
%t2;
<<< Ahhh - wonderful are the ways of sas >>>
|