does Sas provide mechanism of chain-expressions?
does Sas provide mechanism of In-clause?
Simple examples:
a = '09MAY2010'd;
b = '17MAY2010'd;
if (a<=c<=b) then do; /*code*/ end;
if (c in (a:b)) then do; /*code*/ end;
maybe any good techniques of if/where statements?
your suggestions and advises, please.
Thanks!