i want to access char variable in where clause like below-->
%macro obs(indsn=, outdsn=, clause=, col=, optr=, subset_val=);
data &outdsn;
set &indsn;
&clause &col &optr &subset_val;
run;
proc print data= &outdsn;run;
%mend obs;
%obs(indsn=infos, outdsn=ch,clause=where,col=name,optr=?, subset_val=Namo);
am trying to incorporate "in contains like" operator in where clause but its not working gives syntax error... but missing eq ne le gt operators are working... how can I resolve this any help is appreciated.