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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 648 views
  • 0 likes
  • 3 in conversation