BookmarkSubscribeRSS Feed
mrdlau
Obsidian | Level 7

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?

2 REPLIES 2
novinosrin
Tourmaline | Level 20

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!

 

 

Ksharp
Super User
%let n=Alfred Barbara;

proc sql;
select *
from sashelp.class
where indexw(symget('n'),strip(name));
quit;

SAS Innovate 2025: Register Now

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!

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
  • 2 replies
  • 809 views
  • 0 likes
  • 3 in conversation