Hello Guys,
I came across an error while implementing call symputx inside the macro. Here is the program that i'm trying to execute.
%macro test(data=)
data _null_;
set &data;
array x[4] _character_ ;
suffix=put(_n_,5.);
do i=1 to 4;
call symputx(cats(vname(x[i]),suffix),x[i]);
end;
run;
%mend test;
%test(data=ds1);
%test(data=ds2);
After executing this i'm getting the error as Apparent Symbolic reference not resolved.
Kindly Help me with the solution.
Make sure your macro variables are created in the global symbol table.
call symputx(cats(vname(x[i]),suffix),x[i],'g');
If code gives you problems, always post the whole log of a failing step, using the {i} button.
Make sure your macro variables are created in the global symbol table.
call symputx(cats(vname(x[i]),suffix),x[i],'g');
If code gives you problems, always post the whole log of a failing step, using the {i} button.
THANK U SO MUCH KurtBremser 🙂 IT WORKED VERY WELL
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.