I'm have a code as show below:
proc sql;
select *
from table
where ID in %bquote('&ID');
quit;
and I want it to do the equvilant of:
proc sql;
select *
from table
where ID in ('1','2');
quit;
however, no matter how hard I try, I only get one ID with the prompt..
what could be the issue?
May i know how your macr var id was created? can you provide a sample plz?
%let n='Alfred','Barbara';
proc sql;
select *
from sashelp.class
where name in (&n);
quit;the above illustration works without the need of macro quoting, so more info from you would be helpful. Thanks!
%let n=Alfred Barbara;
proc sql;
select *
from sashelp.class
where indexw(symget('n'),strip(name));
quit;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.