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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 585 views
  • 0 likes
  • 2 in conversation