|
Patz,
Citam's solution should work but, to cover other missing values, you might
want to use:
data mway;
set mway (where=(missing(date) OR date >= "31Dec2006"d));
run;
Art
--------
On Mon, 5 May 2008 16:06:57 -0400, Pareen Patel <mditconsult@GMAIL.COM>
wrote:
>i need to retrive all values which is missing and reprents by . (dot) and
>values ge 31dec2006.
>I wrote this code but it doesn't give the correct result.
>
>data mway;
>set mway;
>where . = date >= '31dec2006'd;
>run;
>
>Thanks
>Patz
|