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

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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