With this code I intend to do a dynamic search in Name field and enter the search term (a macrovariable sn_term&i) if found into NewN. I am having issues with the outputing the results; the last search term tend to overwrite the previous ones. Thanks in advance.
%macro mstrial;
data newlbname;
set SmplEHM;
%let i=1;
%Do %until(&i>&p);
select;
when ((find(Name,"&&sn_term&i"))GE 1)
%let Mvname= &&sn_term&i;
NewN = strip(symget('Mvname'));
otherwise ;
end;
%Let i=%eval(&i+1);
%end;
run;
%mend ;
Do not use SYMGET() as it will run after all of the macro code has finished so it will always retrieve the last value assigned to MVNAME.
Also you seem to be generating multiple SELECT statements instead of multiple WHEN statements within a single SELECT statement.
You probably want something like this.
%macro mstrial ;
data newlbname;
set SmplEHM;
select;
%do i=1 %to &p ;
%let Mvname= &&sn_term&i;
when ((find(Name,"&mvname"))GE 1)
NewN = "&mvname"
;
%end;
otherwise ;
end;
run;
%mend ;
Do not use SYMGET() as it will run after all of the macro code has finished so it will always retrieve the last value assigned to MVNAME.
Also you seem to be generating multiple SELECT statements instead of multiple WHEN statements within a single SELECT statement.
You probably want something like this.
%macro mstrial ;
data newlbname;
set SmplEHM;
select;
%do i=1 %to &p ;
%let Mvname= &&sn_term&i;
when ((find(Name,"&mvname"))GE 1)
NewN = "&mvname"
;
%end;
otherwise ;
end;
run;
%mend ;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.