|
Hi John,
Try this..Hope this helps..
If you have two macro variable then use %eval or %sysevalf to add the
two marco variables.
%macro test
(x=,y=);
data
temp;
z=(&x
+&y);
run;
proc append data=temp
base=one;run;
%mend
test;
%test
(x=3,y=1);
%test
(x=2,y=3);
%test(x=12,y=13);
Thanks,
shiva
|