Date: Mon, 5 May 2008 15:21:27 -0500
Reply-To: Citam <citam.sasl@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Citam <citam.sasl@GMAIL.COM>
Subject: Re: I need to retrive . and date>=31dec2006;
In-Reply-To: <200805052006.m45GdBVi007370@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
On 5/5/08, 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;
where date = . OR date >= "31Dec2006"d ;
> run;
|