I have a macro variable which has more than 1 observation like below.
%let age = 12,34,56;
%put &age;
Now I want to use the age as in my where parameter in proc sql.
proc sql;
select *
from family
where age in ("&age");
quit;
I have used %bquote,%quote,%str() and many more but not successful yet.