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

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 ;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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 ;

View solution in original post

1 REPLY 1
Tom
Super User Tom
Super User

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 ;

sas-innovate-wordmark-2025-midnight.png

Register Today!

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.


Register now!

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
  • 1 reply
  • 959 views
  • 0 likes
  • 2 in conversation