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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 657 views
  • 0 likes
  • 2 in conversation