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

I have the following code::

*****************************************;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

options obs=max;
options symbolgen mprint mlogic ;
%global variable dataset ;
%macro cont(dataset);
%global ds;
%let ds=&dataset.;
proc contents data=&dataset. noprint out=cont_perf;
run;
%mend cont;
%cont(sashelp.cars);
%macro condition;
%if &cnt_nos. <= 10 %then %do;
%put "cnt less than == 10" ;
%end;
%else %do;
%put "cnt more than == 10" ;
%end;
%mend condition;

%macro _var_desc(variable);
%global cnt_nos;
proc sql ;
select
cnt into :cnt_nos
from (
select
count(distinct &variable.) as cnt
from
&ds.
)
;quit;run;
%condition;
%mend _var_desc;

*****************************************;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

 

 

Now if i execute it this way it works fine:

%_var_desc(Cylinders);
%_var_desc(DriveTrain);
%_var_desc(EngineSize);
%_var_desc(Horsepower);
%_var_desc(Invoice);
%_var_desc(Length);

But if i execute using Call Execute--- It does not got executed correctly.

The macro value does not get refreshed.

I dont know why.

 

data _null_;
set cont_perf;
call execute('%_var_desc('||name||');');
run;

 

Please suggest what should I change.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

See if nrstr helps.

 

call execute('%nrstr(%_var_desc('||name||');)');

View solution in original post

1 REPLY 1
WarrenKuhfeld
Ammonite | Level 13

See if nrstr helps.

 

call execute('%nrstr(%_var_desc('||name||');)');

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1128 views
  • 3 likes
  • 2 in conversation