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;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.