BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
pavan1
Obsidian | Level 7

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

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.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

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.

pavan1
Obsidian | Level 7

THANK U SO MUCH 🙂 IT WORKED VERY WELL

SAS Innovate 2025: Register Now

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!

How to connect to databases in SAS Viya

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.

Discussion stats
  • 2 replies
  • 732 views
  • 0 likes
  • 2 in conversation