|
Sanjay,
Depending upon how you want to use the expression, there are probably
numerous ways. For example, according to the manual:
"A fully-bounded range condition consists of a variable between two
comparison operators, specifying both an upper and lower limit. For
example, the following expression returns the employee numbers that fall
within the range of 500 to 1000 (inclusive):
where 500 <= empnum <= 1000;"
or, in your case, where 0 <= X <= 100
Art
---------
On Fri, 20 Jul 2007 19:59:23 -0400, Sanjay J <ssj2690@YAHOO.COM> wrote:
>How to write the following expression in SAS data step
>X >=0 <= 100;
>Thanks
|