I am trying to run a where in proc sql clause where a character string is fed into the list. When I feed the string in it errors out. Am I using the right structure?
%let sumlev = 'AX', 'AH';
proc sql noprint;
where term ='Fall' and college in (&sumlev);
quit;
This is fine, once you have valid SQL, anyway.
However, given your other post about adding the apostrophes, which used macro quoting, you need to %unquote() the macro variable for it to work correctly:
%let a=%str(%');
%let sex=&a.M&a.,'F';
proc sql;
select * from sashelp.class where sex in (%unquote(&sex.));
quit;
This is fine, once you have valid SQL, anyway.
However, given your other post about adding the apostrophes, which used macro quoting, you need to %unquote() the macro variable for it to work correctly:
%let a=%str(%');
%let sex=&a.M&a.,'F';
proc sql;
select * from sashelp.class where sex in (%unquote(&sex.));
quit;
Thanks for answering my questions about crazy quotes. I’ve been doing a lot of work with quotes lately and it’s a learning curve.
Not need to use quote character . For your situation , use symget() would be better;
%let sumlev = AX AH ;
proc sql noprint;
where term ='Fall' and symget(sumlev) contains strip(college) ;
quit;
One minor correction
symget('sumlev')
And yes, this will work and does not require the quoting or delimiting of the list and is viable with the example data (although may not be with your actual data, depending...)
Opps. Did you see Arthur.T before ? He didn't appear here for a very long time.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.